How to make a value invisible

Meenie

New Member
Joined
Jan 3, 2011
Messages
44
I have Excel 2003 and Windows Vista Home Premium.
I'm definitely not an excel pro! but I do know how to make basic formulas.
I'm creating a sheet so people in a weight loss group can enter their weight and inches, then each week can enter their new weight and inches and see, at a glance, how much they've lost that week.
I can set that up without a problem.
but on the future weeks, in the loss column, the original weight and inches show up - I'd like them to be invisible until the new loss amount for that week is entered, then see the amount of loss and I can't figure out how to do that. Is there a simple way to do this? or am I stuck with seeing the original numbers until the new loss is entered?
I tried to snip a screen shot to put here, but it doesn't work.
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
Wrap your weight-loss formula in an IF function.

The example below will return blank until there is a value entered in B1 (your current week weight)

=IF(B1="","", A1-B1)

A1- B1 is the weight-loss formula.
 
Upvote 0
THANK you, AlphaFrog! :) That's IT. I knew I had done this years ago, but couldn't for the life of me remember how. :)
Thank you so very much. I really do appreciate it :)


Wrap your weight-loss formula in an IF function.

The example below will return blank until there is a value entered in B1 (your current week weight)

=IF(B1="","", A1-B1)

A1- B1 is the weight-loss formula.
 
Upvote 0

Forum statistics

Threads
1,214,788
Messages
6,121,597
Members
449,038
Latest member
Arbind kumar

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