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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Anonymous
Not applicable

Dynamic (Years, quarters, months) with dynamic YoY, QoQ, MoM

Hi,

I have a Matrix with the following aspect:

 

Matrix_ok_2.JPG

With the upper filter I can chose between Year, Quarter or Month and everything works fine:

 

Matrix_ok.JPG

The problem is that I would like to show the headers with the following format:

Year -> 2017, 2018, 2019....

Quarter -> 2017-Q1, 2017-Q2...

Month -> 2017-01, 2017-02...

 

For this purpose I change the Value column from my auxiliar Dim_Table:

 

Date table.jpg

Here the Matrix table works fine with the "Total Tickets" and "Percentage" measures:

 

Total_Tickets_PreviousYear =
CALCULATE(
DISTINCTCOUNT('Volume Creados'[TaskID]);PREVIOUSYEAR(dim_Date_freq[Value]))

 

 

5 REPLIES 5
v-yiruan-msft
Community Support
Community Support

Hi @Anonymous ,

You can create one measure as below:

Measure =
SWITCH (
    MAX ( 'Format'[Attribute] ),
    "Year", CONCATENATE ( YEAR ( MAX ( 'Format'[Value] ) ), "" ),
    "Quarter", CONCATENATE (
        YEAR ( MAX ( 'Format'[Value] ) ),
        CONCATENATE ( "-Q", QUARTER ( MAX ( 'Format'[Value] ) ) )
    ),
    "Month", CONCATENATE (
        YEAR ( MAX ( 'Format'[Value] ) ),
        CONCATENATE ( "-", MONTH ( MAX ( 'Format'[Value] ) ) )
    )
)

Best Regards

Rena

 

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Hi @v-yiruan-msft 

I can't put a Measure in a Column of a Matrix table and if I try with a new calculate column the "Previous Year" measure disapears:

 

Error_3.JPG

 

 

 

Hi @Anonymous ,

The newly added measurement value or calculated column is recognized as a text value , it is no longer a date value . Hence the Time-intelligence function PREVIOUSYEAR will not work . If you want to calculate Total_Tickets_PreviousYear , you can update your previous formula as below :

Total_Tickets_PreviousYear =
CALCULATE (
    DISTINCTCOUNT ( 'Volume Creados'[TaskID] );
    PREVIOUSYEAR ( dim_Date_freq[Date] )
)

 

Best Regards

Rena

 

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Hi @v-yiruan-msft ,

 

Your furmula is the initial measure that I show in the post and it doesn't work.

 

Error_3.JPG

 

I thing that I need a diferent measure to calculate the PreviousYear metric.

 

Hi @Anonymous ,

Could you please provide your pbix file if it is convenient? Thank you.

 

Best Regards

Rena

 

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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