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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
SD97
New Member

how to set the current month to be shown automatically

Hey, I need to set the current month to be displayed automatically, so far I had to change the display of a specific month in the filter every month after loading the data. I would like powerbi to use the current month itself (data refreshed weekly), I will add that the data includes forecast.

SD97_0-1683630239675.png

 

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

Hi  @SD97 ,

I created some data:

vyangliumsft_0-1683789916153.png

 

Here are the steps you can follow:

1. We can click "Get more visual" to add the "Preselected Slicer".

vyangliumsft_1-1683789916154.png

vyangliumsft_2-1683789937380.png

2. We need to create a table like this.

vyangliumsft_3-1683789937380.png

3. Then we can create a measure .

Measure =
var _slicer_date = SELECTEDVALUE('Table'[Column])
var _today=TODAY()
var _month=
MAXX(
   FILTER(ALL('Table'),'Table'[Date]=_today),[Column])
return
IF(
    _slicer_date = _month,TRUE(),FALSE() )

 4. Then we put theses fields on the visual and we can meet your need:

vyangliumsft_4-1683789985835.png

 

Best Regards,

Liu Yang

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

2 REPLIES 2
v-yangliu-msft
Community Support
Community Support

Hi  @SD97 ,

I created some data:

vyangliumsft_0-1683789916153.png

 

Here are the steps you can follow:

1. We can click "Get more visual" to add the "Preselected Slicer".

vyangliumsft_1-1683789916154.png

vyangliumsft_2-1683789937380.png

2. We need to create a table like this.

vyangliumsft_3-1683789937380.png

3. Then we can create a measure .

Measure =
var _slicer_date = SELECTEDVALUE('Table'[Column])
var _today=TODAY()
var _month=
MAXX(
   FILTER(ALL('Table'),'Table'[Date]=_today),[Column])
return
IF(
    _slicer_date = _month,TRUE(),FALSE() )

 4. Then we put theses fields on the visual and we can meet your need:

vyangliumsft_4-1683789985835.png

 

Best Regards,

Liu Yang

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

Looks good but unfortunetly PowerBi shows that: Coulm Date in table Table cannot be found or may not be used in this expression

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.