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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

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
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

Power BI Carousel June 2024

Power BI Monthly Update - June 2024

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

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.