Forum Discussion
amanuit
4 years agoRegular 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")
- 4 years ago
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") - 4 years ago
there are description https://docs.microsoft.com/en-us/power-bi/transform-model/desktop-tutorial-create-calculated-columns
- 4 years ago
if I answered at your question please mark topiс as resolved 🙂
SolomonovAnton
4 years agoSuper 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) ?
- amanuit4 years agoRegular Visitor
Edited, this is excel equation and want to implement same in Power BI.
- SolomonovAnton4 years agoSuper User
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")- amanuit4 years agoRegular Visitor
where can i find Calculation column option, is it same like custom calculation?