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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
parry2k
Super User
Super User

How to show data in dashboard for current month

Hello,

 

I created a dashboard to display sales by month. I have scheduled refresh for the data source but I want my dashboard to show sales by month for last 3 months. 

 

What I need to do in dashboard to automatically show data for current month + last 2 months instead of user has to filter and then pin on the dashboard.

 

I'm sure there is a way and need help.


Cheers,

P



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

1 ACCEPTED SOLUTION
Rémi
Resolver III
Resolver III

Hi,

 

You have to create an intermediate measure :

Date difference = NOW() - MAX( [Date] )

Then you put a filter :

Date difference < 90

And you will have your data of the last three months.

View solution in original post

10 REPLIES 10
imanzi
New Member

The way I set it up required a few dimensions:

 

Today = TODAY()

StartOfMonth = TODAY() - DAY('MyTable'[Today]) + 1

CurrentMonth = IF('MyTable'[Date] >='MyTable'[StartOfMonth] && 'MyTable'[Date] <= 'MyTable'[Today],1,0)

 

Metric Current Month = IF(ISCROSSFILTERED('MyTable' [Month]),SUM('MyDataTable'[Metric]),CALCULATE(SUM('MyDataTable'[Metric]),FILTER('MyTable','MyTable'[CurrentMonth]= 1)))

 

And the Metric Current Month should be giving you this months results.

WillT
Community Admin
Community Admin

You could use Q&A to generate your visuals - that supports filters like 'for this month' or 'in the last 2 months'. They'll be dynamically updated as time goes by.

We do want to bring these capabilities to the Report view as well! Stay tuned!
Rémi
Resolver III
Resolver III

Hi,

 

You have to create an intermediate measure :

Date difference = NOW() - MAX( [Date] )

Then you put a filter :

Date difference < 90

And you will have your data of the last three months.

Anonymous
Not applicable

Hello,

 

The filter is available as a date format only. I am unable to select the date difference as < 90 days.

 

Can you help me?

 

Thank you

J

You got any answer to this? I have the same question.

It's possible to use DATEDIFF function:

 

Date difference = DATEDIFF(MAX(Mytable[Date]);TODAY();DAY)

Anonymous
Not applicable

@tgsteine

No, I am sorry.

Anonymous
Not applicable

Hello,

 

It is not clear to me how would I use the filter.

 

I was able to create the new measure.

djnww
Impactful Individual
Impactful Individual

Thanks for the great tip, @Rémi

 

I'm kicking myself for not thinking of this workaround solution.

 

- Daniel

Enrico
Frequent Visitor

We are here in the service forum, not dekstop.

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors