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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

How to reference ifs in DAX

I need to say

 

 

AVB = IF('SageFunctCodes$'[type]="Cost",Budgets[Budget]-Transactions[Actual],IF('SageFunctCodes$'[Type]="Revenue",Transactions[Actual]-Budgets[Budget],0))

 

but in a measure.  When I try to copy the code in the measure it does not recognise the SageFunctCodes columns.  How would I go about replicating the above in a Dax measure.

 

Thanks

 

C

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Found 

 

AvB = IF(COUNTROWS(VALUES( 'SageFunctCodes$'[Type] ))=1, 
        IF(VALUES( 'SageFunctCodes$'[Type] ) =  "Cost", 
         Budgets[Budget]-Transactions[Actual], 
         IF(VALUES( 'SageFunctCodes$'[Type] ) =  "Revenue", 
         Transactions[Actual]-Budgets[Budget]) ),Transactions[Actual]-Budgets[Budget])

This works.

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Found 

 

AvB = IF(COUNTROWS(VALUES( 'SageFunctCodes$'[Type] ))=1, 
        IF(VALUES( 'SageFunctCodes$'[Type] ) =  "Cost", 
         Budgets[Budget]-Transactions[Actual], 
         IF(VALUES( 'SageFunctCodes$'[Type] ) =  "Revenue", 
         Transactions[Actual]-Budgets[Budget]) ),Transactions[Actual]-Budgets[Budget])

This works.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.