Is it possible to hide #VALUE!?

honkin

Active Member
Joined
Mar 20, 2012
Messages
374
Office Version
  1. 2016
Platform
  1. MacOS
Is it possible to tell Excel NOT to display #VALUE! in a cell that has a formula in it?

I have a sheet which is locked, all bar a couple of columns for input. The cells in the locked columns display this all the way down to the last cell when waiting for an answer to be displayed, but it is hellishly ugly to see it like this. Is it possible for nothing to be displayed in those cells until something is input, thus triggering the formula?

cheers
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
Use

=IFERROR(yourformula,"")
cheers Steve

The difficulty is, some of the formulas are very complex and the worst offender, which is not as complex, has "" already in it. Excel returns too many arguments when I add the formula.

Apologies, should have posted the code initially. It is =IF(N19<35,"", O19)

cheers
 
Upvote 0
You have an error in one of those other cells then but

=IFERROR(IF(N19<35,"",O19),"")

you put your formula in where i said yourformula but without the = sign.
 
Upvote 0
Solution
You have an error in one of those other cells then but

=IFERROR(IF(N19<35,"",O19),"")

you put your formula in where i said yourformula but without the = sign.
Thanks so much for your reply. I think I may have missed the , before "", as when I tried it again, it worked fine
Thanks again
 
Upvote 0

Forum statistics

Threads
1,214,983
Messages
6,122,582
Members
449,089
Latest member
Motoracer88

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