Forum Discussion
Simple if-then statement DAX
- 3 years ago
Hi LearningBI1986 ,
Ok. Based on the error you're getting, it looks like you're trying to do this in Power Query. If so, then it's not DAX you need, it's M, and you appear to have mixed both languages in your statement.
The if..then structure in M looks like this:
if (something and somethingElse) or anotherThing then doThisThing else doThisOtherThingSo, your example would look something like this:
if [#"Flight #"]="832" and List.Contains({2,3,4,5}, [Day of Week]) then 53 else 0Pete
- Anonymous3 years ago
Hi LearningBI1986 ,
Pete provides m-codes that you can use in the PowerQuery editor to add a custom column.
Add a custom column - Power Query | Microsoft Learn
For DAX, please try:
Seats = IF( 'TableName'[Flight #] = 832 && 'TableName'[Day of Week] IN {2,3,4,5,6}, 53, 0 )Best Regards,
Gao
Community Support TeamIf there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data in the Power BI Forum
Thank you! I am fairly new to this, so I understand what you are saying now. Thanks again.
Hi LearningBI1986 ,
Pete provides m-codes that you can use in the PowerQuery editor to add a custom column.
Add a custom column - Power Query | Microsoft Learn
For DAX, please try:
Seats = IF(
'TableName'[Flight #] = 832 && 'TableName'[Day of Week] IN {2,3,4,5,6},
53,
0
)
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data in the Power BI Forum