My IF Statement seems to be not quite right, help!

Steven in Germany

New Member
Joined
Jul 19, 2016
Messages
4
I have the feeling I'm making a silly mistake here. Here is my formula:

=IF(S33="";"";IF(P33="Deutschland";Q33+$AS$7;Q33+$AS$7+2))

What I would like it to do is the following

If S33 is 0 then give 0 as the result

If S33 is higher than 0 and P33 = Deutschland give me Q33+A7 as the result

If S33 is higher than 0 and P33 doesn't = Deutschland give me Q33+A7+2 as the result

Can someone put me out of my misery?

Many thanks!
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Perhaps:
Code:
[COLOR=#333333]=IF(S33=[/COLOR][COLOR=#ff0000][B]0[/B][/COLOR][COLOR=#333333];[/COLOR][COLOR=#ff0000][B]0[/B][/COLOR][COLOR=#333333];IF(P33="Deutschland";Q33+$AS$7;Q33+$AS$7+2))[/COLOR]
 
Upvote 0
You aren't checking for zero you are checking for "", which is blank. If you truly want to check for zero, then change the "" to 0 and try and see if it works.
 
Upvote 0

Forum statistics

Threads
1,214,833
Messages
6,121,868
Members
449,053
Latest member
Mesh

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