Help needed to correct the formula

excel_sp

New Member
Joined
Feb 25, 2018
Messages
9
Hi,

I am sure, that I am missing something silly which is stopping me from getting the desired result. This formula is a small part of a project that I am working on. Can someone please look at the screenshot, and tell me what I am doing wrong?

Condition:
If C3 = NA and D3 ="" then E3 should be 5
But on excel, my outcome is 10

The

Screenshot Link: https://drive.google.com/file/d/1yONG2cKat5JPot5eehLnmm4oQKYgRGN0/view?usp=sharing
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
My be you can try this. My version is 2013.

Code:
=IF(C3="NA",IF(D3="NA",10,IF(ISBLANK(D3),5,IF(D3<=2.5%,10,IF(D3>2.5%,5)))))
 
Upvote 0
Thank you Sam, it worked. Let me implement this on my actual project. I will share an update soon.
 
Upvote 0

Forum statistics

Threads
1,213,568
Messages
6,114,348
Members
448,570
Latest member
rik81h

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