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
paulinamaj
Frequent Visitor

Dateadd + another hierarchy

Hi,

I made a measure that calculates the% change between the previous month, quarter, year.

% Change Units = 

VAR CurrentValue = 'Sales Ths Units'[Total Sales Units]

VAR PreviousValue =

SWITCH(

TRUE(),

ISINSCOPE('Timedimension'[Date].[Day]), CALCULATE('Sales Ths Units'[Total Sales Units], DATEADD('Timedimension'[Date], -1, DAY)),

ISINSCOPE('Timedimension'[Date].[Month]), CALCULATE('Sales Ths Units'[Total Sales Units], DATEADD('Timedimension'[Date], -1, MONTH)),

ISINSCOPE('Timedimension'[Date].[Quarter]), CALCULATE('Sales Ths Units'[Total Sales Units], DATEADD('Timedimension'[Date], -1, QUARTER)),

ISINSCOPE('Timedimension'[Date].[Year]), CALCULATE('Sales Ths Units'[Total Sales Units], DATEADD('Timedimension'[Date], -1, YEAR))

)

RETURN

DIVIDE(

CurrentValue - PreviousValue,

PreviousValue)


It work when I use on a graph automatic date hierarchy from PowerBi.

 

Now I have to add another hierarchy with date on the graph (I cant use date hierarchy from PowerBI):

paulinamaj_0-1623923117103.pngpaulinamaj_1-1623923155134.png

 

 

When I added this hierarchy my value : "% Change Units" is blank on the graph. 

How I can fix it? Thanks!

1 REPLY 1
v-kelly-msft
Community Support
Community Support

Hi  @paulinamaj ,

 

I guess your measure doesnt contain the hierarchy you added in,that's why you see blank results.You need to add the hierarchy in your measure.

 

Best Regards,
Kelly

Did I answer your question? Mark my post as a solution!

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.