#value!

SALO

Board Regular
Joined
Jul 27, 2008
Messages
66
IN CELL AQ1 I WANT TO PUT A FORMULA THAT READS AI1*V1 WHICH WILL RETURN EITHER A NUMBER VALUE OR NOTHING. THE PROBLEM IS THAT SOMETIME WILL BE NO VALUE IN THESE CELLS SO i GET THE #VALUE! . COULD SOME ONE HELP ME TO ALTER OR ADD THE FORMULA IN AQ1 =AI1*V1 SO THAT IT RETURNS EITHER THE NUMBER OR NOTHING.

THANKS IN ADVANCE
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
The formula that you are looking for is:

=IF(ISERROR(AI1/V1),"",AI1/V1)

If you want to you can place reminder text between the "", such as "Data not available"

Kelbo
 
Upvote 0
If you're getting a #VALUE error there is probably an empty string "" in the cell, not nothing:

=IF(COUNT(A1,V1)=2,A1*V1,"")
 
Upvote 0

Forum statistics

Threads
1,203,047
Messages
6,053,195
Members
444,645
Latest member
mee siam

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