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
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
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.