Help with =IF

Markmus

New Member
Joined
Sep 7, 2014
Messages
1
Hi Guys & Girls ^^

I am trying to get this one to work but it keep's reporting an error can you tell me what i am doing wrong?

=if(og($BM7>=0,$BM7<=999),1,if(og($BM7>=1000,$BM7<=2249),2,if(og($BM7>=2250,$BM7<=3749),3;if($BM7>=3750,4))))

Hoping u can help me

/Markmus
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Assuming your "og" is "and", the only other problem I can see is in front of the last IF, you have ; instead of ,
 
Upvote 0
Try
Code:
=IF($BM7<=999,1,IF($BM7<=2249,2,IF($BM7<=3749,3,4)))
 
Upvote 0

Forum statistics

Threads
1,214,400
Messages
6,119,289
Members
448,885
Latest member
LokiSonic

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