#VALUE! Error on a Simple Formula

Snake Eyes

Board Regular
Joined
Dec 14, 2010
Messages
103
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
Greetings,
I'm not quite sure why I can't figure this out...
F13 = 7
O13 = 435
X9 = 22%

This formula returns a blank cell in T13 as expected:
Excel Formula:
=IF(F13<365,"",O13)

Then this formula gets me the #VALUE! error where I would expect a 0:
Excel Formula:
=(T13*$X$9)
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
A formula produced blank is not treated the same way as an actual blank cell. But you could try this instead.

Excel Formula:
=N(T13)*$X$9
 
Upvote 0
Solution
T13 is not zero it's "" (which is a text string) hence you get an error as you cannot multiply text by a number.
Change the formula inT13 to return 0 rather than ""
 
Upvote 0
Thanks FormR.
That worked.

Hey Fluff,
I should have also included that I did not want the zero value returned to display. I need that cell to stay blank.
 
Upvote 0
Glad we could help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,136
Messages
6,123,249
Members
449,093
Latest member
Vincent Khandagale

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