Forum Discussion
haassiej
7 years agoHelper I
DAX Case When
Hi guys, I could really use your help turning the SQL formula below into a DAX format. What is the DAX-equivalent of a 'case when..' in SQL? Help is very much appreciated! case when nvl...
- 7 years ago
Try looking at the IF() function, and use multiple criteria by joing them with the double ampersand.
= IF(A = 1 && B = 2, Does This If True, Does This if False)
v-jiascu-msft
7 years agoMicrosoft Employee