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

IF statement using row in matrix

Hello,

I am creating a matrix to show a breakdown of orders and the YOY completion percentage of this year compared to last year.

 

The YOY calculation is a measure defined as follows: 

YOY = CALCULATE(SUM(Query2[ORDERS]),Query2[YEAR] = 2021)/CALCULATE(SUM(Query2[ORDERS]),Query2[YEAR] = 2020)
 
But I want this measure to be blank for the previous year and want to use an if statment in my measure to return "" when the year in the row is minimum year present in the data.
 
I've tried to use something like the following:
YOY = IF(Query2[YEAR] = MIN(Query2[YEAR]),"",CALCULATE(SUM(Query2[ORDERS]),Query2[YEAR] = 2021)/CALCULATE(SUM(Query2[ORDERS]),Query2[YEAR] = 2020))
 
But that formula is not accepted by DAX/Power Bi. How can I create a measure that references a value in a row in a matrix (i.e. a column in my data represented as a row header)?

omar_at_trimedx_0-1622580227896.png

 

1 ACCEPTED SOLUTION
AlexisOlson
Super User
Super User

How about this instead?

 

YOY =
VAR RowYear = MAX( Query2[YEAR] )
RETURN
    DIVIDE (
        SUM ( Query2[ORDERS] ),
        CALCULATE ( SUM ( Query2[ORDERS] ), Query2[ORDERS] = RowYear - 1 )
    )

View solution in original post

1 REPLY 1
AlexisOlson
Super User
Super User

How about this instead?

 

YOY =
VAR RowYear = MAX( Query2[YEAR] )
RETURN
    DIVIDE (
        SUM ( Query2[ORDERS] ),
        CALCULATE ( SUM ( Query2[ORDERS] ), Query2[ORDERS] = RowYear - 1 )
    )

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.