Copy formula without showing values?

wacawacawallas

New Member
Joined
May 19, 2011
Messages
2
I am trying to create a spreadsheet that is also "pretty" and am having some trouble. There will be rows where users can input information as they receive it, and then a few columns with formulas in them. Since the original cells will not have a value entered right away, is there a way to fill the formula down the column without actually showing the zero or generic date, etc.? Basically, have the cell hold a formula but appear blank?

Thank you for any help!
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
I am trying to create a spreadsheet that is also "pretty" and am having some trouble. There will be rows where users can input information as they receive it, and then a few columns with formulas in them. Since the original cells will not have a value entered right away, is there a way to fill the formula down the column without actually showing the zero or generic date, etc.? Basically, have the cell hold a formula but appear blank?

Thank you for any help!

There may be a better way, but you could use an IF statement like
=IF(YourFormula=0,"",YourFormula)

So in place of your formula you would put the entire IF statement.
 
Upvote 0
formula in B1

=IF(A1="","",your formula here)

so that if A1 is blank then B1 will be blank... but if A1 has a value, then your formula will be calculated
 
Upvote 0
There may be a better way, but you could use an IF statement like
=IF(YourFormula=0,"",YourFormula)

So in place of your formula you would put the entire IF statement.

Definitely use Danzon's idea if you would want 0 to show up when data was entered and the result was 0 - which would make sense! :)
 
Upvote 0

Forum statistics

Threads
1,224,516
Messages
6,179,231
Members
452,898
Latest member
Capolavoro009

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