Cell F12 continues to return #N/A when no value is within D12.

Mrniceguyy

New Member
Joined
Oct 28, 2021
Messages
13
Office Version
  1. 2016
Platform
  1. Windows
F12 returns #N/A when I should have the value of C12/E12 if D12 is has no value you. Am I missing a function?
When D12 is selected, It should add 10% to F12.



1635447289977.png


1635447446575.png
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
The vlookup will return #N/A when it fails to find the lookup value (D12) in the lookup range (Data!A31:A32). You can use the IFNA function to handle that.
 
Upvote 0
The vlookup will return #N/A when it fails to find the lookup value (D12) in the lookup range (Data!A31:A32). You can use the IFNA function to handle that.
But how do I return the value of C12/ E12 in F12
 
Upvote 0
How about
Excel Formula:
=IF(E12>=1,C12/E12+IFNA(VLOOKUP(D12,Data!A31:B32,2,0),0),"")
 
Upvote 0
Solution

Forum statistics

Threads
1,214,875
Messages
6,122,037
Members
449,062
Latest member
mike575

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