All in one Cell?

wkirkcrawford

Board Regular
Joined
Dec 7, 2013
Messages
72
Greetings,

I have a Diabetic Blood Sugar Log, and I want to show how much higher or below I am than last the period.

I want it to say, I'm 26 points Higher than the last period.

I know that the number, 26, is one cell - another cell on another worksheet. And the Higher or Below is IF cell 1 is > cell 2, Higher, Below? That's what I'm thinking.

W. Kirk Crawford
Tularosa, New Mexico
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Greetings,

I have this working. =IF(I14-'Oct 2019 - April 2020'!I14,"Higher", "Lower")

Now if I could put in from of that, "I'm ## points, =IF(I14-'Oct 2019 - April 2020'!I14,"Higher", "Lower")
 
Upvote 0
="I'm ## points, " & IF(I14-'Oct 2019 - April 2020'!I14,"Higher", "Lower")

what cell are the calcs in , i dont see a >


="I'm " & I14-'Oct 2019 - April 2020'!I14 & " points, " & IF(I14-'Oct 2019 - April 2020'!I14,"Higher", "Lower")
 
Upvote 0
="I'm ## points, " & IF(I14-'Oct 2019 - April 2020'!I14,"Higher", "Lower")

what cell are the calcs in , i dont see a >


="I'm " & I14-'Oct 2019 - April 2020'!I14 & " points, " & IF(I14-'Oct 2019 - April 2020'!I14,"Higher", "Lower")

etaf,

That works great. Thanks.

Now what IF, I14-'Oct 2019 is not Higher than April 2020'!I14?

W. Kirk Crawford
Tularosa, New Mexico
 
Upvote 0
you need the > , but looking at the formula comparing last period to new needs <
IF(I14-'Oct 2019 - April 2020'!I14,"Higher", "Lower")
in the if
I14-'Oct 2019 - April 2020'!I14
gives a number
0 is FALSE anything is TRUE
so
="I'm " & abs(I14-'Oct 2019 - April 2020'!I14) & " points, " & IF(I14-'Oct 2019 < April 2020'!I14,"Higher", "Lower")
abs removes the sign for negative numbers
 
Upvote 0
="I'm " & ABS(I14-'Oct 2019 - April 2020'!I14) & " points, " & IF(I14>'Oct 2019 - April 2020'!I14,"Higher", "Lower")
 
Upvote 0

Forum statistics

Threads
1,214,908
Messages
6,122,187
Members
449,071
Latest member
cdnMech

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top