#VALUE! error

touque

Board Regular
Joined
Jan 22, 2009
Messages
107
I made a simple formula in an existing sheet that was basically "A1-B1" and dragged it down for 300 more rows. Most A column and B column cells were blank.
Issue I have is that in column C many results were blank with a dollar sign. But many gave me the #VALUE error.
If I input numbers in A and B cells it would correct but why are only some doing this? I would rather not manually input numbers to correct.

1703104882044.png
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
My best guess is that those cells aren't actually blank, but returning an empty string, like this ""
If you don't want it to return anything if there aren't two numbers:
=IF(COUNT(A1:B1)=2,A1-B1,"")

Or if you want it to treat the "" as 0:

=N(A1)-N(B1)
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,956
Members
449,096
Latest member
Anshu121

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