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
amanuit
Regular Visitor

Conditional column-IFAND function

How to write these condition in conditional column and add column

=IF(AND(A2<A3, A2<100), A2, "The value is out of range")

 
3 ACCEPTED SOLUTIONS

you should create calculation column:

 

calculation column name =IF(AND([column A2]<[column A3], [column A2]<100), [column A2], "The value is out of range")

 

View solution in original post

if I answered at your question please mark topiс as resolved 🙂

View solution in original post

9 REPLIES 9
amanuit
Regular Visitor

Thank you very much!

amanuit
Regular Visitor

Can we also implement other Excel functions like ISERROR, MATCH, AND, OR etc

amitchandak
Super User
Super User

@amanuit , Please check the reply from @SolomonovAnton first

Then try

IF(AND(A2<A3, A2<100), A2, "The value is out of range")

 

or

 

 

IF( A2<A3 &&  A2<100 , A2, "The value is out of range")

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
SolomonovAnton
Super User
Super User

hello !

first of all I think you have error in this expression

=IF(AND(A2<A3, A2,100), A2, "The value is out of range")
what do you want to say in it expression AND(A2<A3, A2,100) ?

Edited, this is excel equation and want to implement same in Power BI.

you should create calculation column:

 

calculation column name =IF(AND([column A2]<[column A3], [column A2]<100), [column A2], "The value is out of range")

 

where can i find Calculation column option, is it same like custom calculation?

if I answered at your question please mark topiс as resolved 🙂

Helpful resources

Announcements
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!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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