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
grayFox
Regular Visitor

Card Visuals -Time Intelligence

Hi All, 

After some advice. 

I have a calendar table and a sales table. 

As there is a lag in reporting, I am unable to use the current month and previous month measures to report for these said months. 

Is there a way to do a current month -1 and a previous month -1 measure? I will need this primarily for a card visual. 

 

thanks

 

1 ACCEPTED SOLUTION
Mariusz
Community Champion
Community Champion

Hi @grayFox 

 

you can use the below measures 

 

Sales Last Month = 
CALCULATE(
    [Sales],
    PREVIOUSMONTH( 'Calendar'[Date] )
)
Sales Last Month -1 = 
CALCULATE(
    [Sales Last Month],
    PREVIOUSMONTH( 'Calendar'[Date] )
) 

 

 Later add Date column filter to your card visuals like below.

 

 

image.png

 

Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

Please feel free to connect with me.
LinkedIn

 

View solution in original post

3 REPLIES 3
Mariusz
Community Champion
Community Champion

Hi @grayFox 

 

you can use the below measures 

 

Sales Last Month = 
CALCULATE(
    [Sales],
    PREVIOUSMONTH( 'Calendar'[Date] )
)
Sales Last Month -1 = 
CALCULATE(
    [Sales Last Month],
    PREVIOUSMONTH( 'Calendar'[Date] )
) 

 

 Later add Date column filter to your card visuals like below.

 

 

image.png

 

Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

Please feel free to connect with me.
LinkedIn

 

Hi Mariuz, 

Thanks so much, this worked. The solution was simpler than I thought!

One small tweak to make the suggestion work, I needed to change the filter as suggested from 'Day' to 'Month'

amitchandak
Super User
Super User

@grayFox ,Create calendar till max sales date

calendar =calendar(Min('Sales'[Date]),Max('Sales'[Date]))

 

Or create measure like

This Month (Max) =
var _max = maxx('Sales','Sales'[Date])
var _min = Minx('Sales','Sales'[Date])

return
CALCULATE(SUM('Sales'[Sales]), FILTER(all('Date'), 'Date'[Date]<=_max && 'Date'[Date]>=_min))

last Month (Max) =
var _max = maxx('Sales',dateadd('Sales'[Date],-1,month))
var _min = Minx('Sales',dateadd('Sales'[Date],-1,month))

return
CALCULATE(SUM('Sales'[Sales]), FILTER(all('Date'), 'Date'[Date]<=_max && 'Date'[Date]>=_min))

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.