cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Brighton10
Helper II
Helper II

Add current month dynamically in a table visual

Greetings

I have a table visual in powerBI and would like to show the current month as the first column and also showing only 4 months worth of data. For example in the pbix file attached current month is March 2021 and 4 months back is November 2020, I want next month to dynamically add April 2021 (which will be the current month then) and display until december 2020, May 2021 until January 2021 and so on. I have created the following measures to do the calculation so far but dont know how to make this dynamic.

March 2021 = CALCULATE(SELECTEDVALUE('Dehydrator Runtime'[Dehydrator Runtime (hours)]), FILTER('Dehydrator Runtime','Dehydrator Runtime'[MonthYear]="March 2021"))
===============================================================================
March 2021_ Warning = CALCULATE(SELECTEDVALUE('Dehydrator Runtime'[Warning Duration Hours]), 'Dehydrator Runtime'[MonthYear]="March 2021")
===============================================================================dehydrator_pic.PNGhttps://drive.google.com/drive/folders/147KCbI84SXzhhvSPSeFPM26HfSYtAr9S?usp=sharing 
 
Thank you in advance

 

1 ACCEPTED SOLUTION
v-eqin-msft
Community Support
Community Support

Hi @Brighton10 ,

 

Accoding to your description, It's suggested to use Matrix visualization.

Measure =
IF (
    CONVERT ( MAX ( 'Dehydrator Runtime'[MonthYear] ) & " 1", DATETIME )
        > EOMONTH ( TODAY (), -4 ),
    SUM ( 'Dehydrator Runtime'[Dehydrator Runtime (hours)] )
)

 3.22.1.Previous.PNG

Please take a look at the pbix file below.

 

Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-eqin-msft
Community Support
Community Support

Hi @Brighton10 ,

 

Accoding to your description, It's suggested to use Matrix visualization.

Measure =
IF (
    CONVERT ( MAX ( 'Dehydrator Runtime'[MonthYear] ) & " 1", DATETIME )
        > EOMONTH ( TODAY (), -4 ),
    SUM ( 'Dehydrator Runtime'[Dehydrator Runtime (hours)] )
)

 3.22.1.Previous.PNG

Please take a look at the pbix file below.

 

Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Top Solution Authors