HELP! If Statement with multiple conditions

Nomanland

New Member
Joined
Jan 13, 2014
Messages
3
I need an IF Statement with multiple conditions and my formula is not working:

=IF(G12=<100000, IF(G12>200000, IF(G12>300000, 1, 0), 0), 0) where G12 is an actual value.

It came with an error.

I want: If the total number of the value reached 100,000, add one. Again, in the same cell, if it reached another 100,000 (200,000 or more) add one in the same cell which makes it two and so on. So How do I create a formula to meet my condition?

Thanks.

I'm new to this forum btw!
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
I know this isn't exactly what you're asking for, but this code will return a value of 0 when cell G12= anything less than 100,000. anything between 100,000 and 199.999 will return 1. Anything 200,000 to 299.999 will return 2. And so on. This code will keep working no matter how large your number is.

Code:
=rounddown(c12/100000,0)
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,243
Messages
6,123,837
Members
449,129
Latest member
krishnamadison

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