Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply

IF Formula

Hi Team,

 

Can some one help me with correcting the below formula?

 

By Value3 = IF(SUM(Sheet1[Total Value])< 100000,"1. < 100k",IF(SUM(Sheet1[Total Value])>= 1000000,"5. = or > 1 Million",IF(AND(SUM(Sheet1[Total Value])>= 100000,SUM(Sheet1[Total Value])< 250000,"2. 100k - < 250k"),IF(AND(SUM(Sheet1[Total Value])>= 250000,SUM(Sheet1[Total Value])< 500000,"3. 250k - < 500k"),IF(AND(SUM(Sheet1[Total Value])>= 500000,SUM(Sheet1[Total Value])< 1000000,"4. 500k - < 1 Million",""))))))

 

When i enter this formula encountering the below error.

"too many arguments were passed to the and function. the maximum argument count for the function is 2"

1 ACCEPTED SOLUTION
v-xuding-msft
Community Support
Community Support

Hi @RanjanThammaiah ,

Measures needs the row context to show all values.  You could create a calculated column to implement. 

Column = 
IF(
Sheet1[Total Value]< 100000,"1. < 100k",
		IF(Sheet1[Total Value]< 250000,"2. 100k - < 250k",
			IF(Sheet1[Total Value]< 500000,"3. 250k - < 500k",
				IF(Sheet1[Total Value]< 1000000,"4. 500k - < 1 Million","5. = or > 1 Million"))))

3.PNG

4.PNG

Best Regards,

Xue Ding

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

5 REPLIES 5
v-xuding-msft
Community Support
Community Support

Hi @RanjanThammaiah ,

Measures needs the row context to show all values.  You could create a calculated column to implement. 

Column = 
IF(
Sheet1[Total Value]< 100000,"1. < 100k",
		IF(Sheet1[Total Value]< 250000,"2. 100k - < 250k",
			IF(Sheet1[Total Value]< 500000,"3. 250k - < 500k",
				IF(Sheet1[Total Value]< 1000000,"4. 500k - < 1 Million","5. = or > 1 Million"))))

3.PNG

4.PNG

Best Regards,

Xue Ding

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
judspud
Solution Supplier
Solution Supplier

Hi @RanjanThammaiah 

 

The AND function can only take 2 arguments.

If you require more than 2 arguments to be satisified you can use && between arguments instead of the AND function.

 

Hope this helps

 

Thanks,

George

Thanks For the response.

 

I have changed the formula. The formula works but i am not getting the result right. Could you help me correcting it.

 

By Value3 = IF(SUM(Sheet1[Total Value])< 100000,"1. < 100k",IF(SUM(Sheet1[Total Value])>= 1000000,"5. = or > 1 Million",IF(SUM(Sheet1[Total Value])>= 100000 && SUM(Sheet1[Total Value])< 250000,"2. 100k - < 250k",IF(SUM(Sheet1[Total Value])>= 250000 && SUM(Sheet1[Total Value])< 500000,"3. 250k - < 500k",IF(SUM(Sheet1[Total Value])>= 500000 && SUM(Sheet1[Total Value])< 1000000,"4. 500k - < 1 Million","")))))
 
Its producing only the condition "5. = or >1Million"
 
Regards,
Ranjan

Hi @RanjanThammaiah 

 

That result would be displayed because the value is greater than or equal to 1m.

 

Are you placing the measure as a card visual or splitting it out in a table visual?

 

Thanks,

George

I have added it as new column.

If you see the below difference between BI new column formula and excel formula.

 

IF Formula.jpg

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors