Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello,
I have a very simple messure:
TotalSalesBlue = SUMX(FILTER('Sales','Sales'[COLOR]="BLUE"),'Sales'[AMT])
Sales Table is connect with Date Table via DateID.
I'm trying to find Only PreviousMonth, PreviousQuarter Data using Following formula:
PreviousMonthBlueSlaes= CALCULATE ([TotalSalesBlue] , PREVIOUSMONTH(DATE[Date_Id]))
I'm geeting all the months, but I'm only looking for previous month sum.
Thanks in advance.
Solved! Go to Solution.
Hi,
Explore relative dates filters
Hi,
If you modify your TotalSalesBlue measure to this, do you get the correct result.
=CALCULATE(SUM('Sales'[AMT]),'Sales'[COLOR]="BLUE")
Even after modifying the result I get all month
1- Changed messured as you suggested, still getting all months as shown below. I'm need to only get 9/30/2018 data.
hi, @Anonymous
You may try to this way as below:
Step1:
Add a year month column in date table
Year Month Number = YEAR ( 'Date'[Date] ) * 100 + MONTH ( 'Date'[Date] )
Step2:
modify the formula
PreviousMonthBlueSlaes = CALCULATE ([TotalSalesBlue] , PREVIOUSMONTH('Date'[Date]), 'Date'[Year Month Number]=YEAR(TODAY())*100+MONTH(TODAY())-2)Result:
Before
After
Best Regards,
Lin
Hi,
Explore relative dates filters
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 53 | |
| 45 | |
| 38 | |
| 16 | |
| 14 |
| User | Count |
|---|---|
| 82 | |
| 69 | |
| 39 | |
| 29 | |
| 27 |