Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Good day,
I am currently working on a Day-on-Day comparison. I would like to create the following calculations:
1. Latest day of the current month Sales
2. Previous day of the current month Sales
3. Latest day of previous month Sales
4. Previous day of the previous month Sales
Your assistance is highly appreciated.
Kind Regards,
Solved! Go to Solution.
Hi @Anonymous
(1)You can use PREVIOUSDAY dax to calculate the sale for pervious day .
previous sales = CALCULATE(MAX('Table'[Sales]),PREVIOUSDAY('Table'[Date]))
(2)The latest day sale for current month
current month latest sales = CALCULATE(MAX('Table'[Sales]),FILTER('Table',max('Table'[Date])<=TODAY()))
(3)The latest day sale for previous month
previous month latest sales = CALCULATE(MAX('Table'[Sales]),FILTER('Table','Table'[Date]<=EOMONTH(TODAY(),-1)))
The final result is as shown :
I have attached my pbix file ,you can refer to it .
Best Regards
Community Support Team _ Ailsa Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous
(1)You can use PREVIOUSDAY dax to calculate the sale for pervious day .
previous sales = CALCULATE(MAX('Table'[Sales]),PREVIOUSDAY('Table'[Date]))
(2)The latest day sale for current month
current month latest sales = CALCULATE(MAX('Table'[Sales]),FILTER('Table',max('Table'[Date])<=TODAY()))
(3)The latest day sale for previous month
previous month latest sales = CALCULATE(MAX('Table'[Sales]),FILTER('Table','Table'[Date]<=EOMONTH(TODAY(),-1)))
The final result is as shown :
I have attached my pbix file ,you can refer to it .
Best Regards
Community Support Team _ Ailsa Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hey @Anonymous ,
you can get the dates:
1. With the function EOMONTH
2. Take the value from 1. and do -1
3. Use EOMONTH for the PREVIOUSMONTH
4. Take the day from 3. and do -1
Hi @selimovd I am relatively new on Power Bi so scripting is not that good...do you mind writing out the actual syntax?
Thanks
Hey @Anonymous ,
sure, I can help you. But then I need more information.
Do you want these dates as a calculated column or as a measure? And what do you want to do with this date? For example if you want to use it as a slicer you need it as a column, etc.
Best regards
Denis
Hi @selimovd ,
I need them as measures. I managed to create measure for the current month. The issue is on the previous month last day and previous months previous date. Please see screenshot below and the syntax used.
Hey @Anonymous ,
try the following measures:
For 1:
Latest day of the current month Sales =
VAR vCurrentDate = MAX( 'Daily Funeral Cover Sales'[Transaction Date] )
RETURN
CALCULATE(
MAX( 'Daily Funeral Cover Sales'[Transaction Date] ),
YEAR( vCurrentDate ) = YEAR( 'Daily Funeral Cover Sales'[Transaction Date] ) && MONTH( vCurrentDate ) = MONTH( 'Daily Funeral Cover Sales'[Transaction Date] )
)
For 2:
Previous day of the current month Sales = [Latest day of the current month Sales] - 1
For 3:
Latest day of previous month Sales =
VAR vCurrentDate = EOMONTH( MAX( 'Daily Funeral Cover Sales'[Transaction Date] ), -1)
RETURN
CALCULATE(
MAX( 'Daily Funeral Cover Sales'[Transaction Date] ),
YEAR( vCurrentDate ) = YEAR( 'Daily Funeral Cover Sales'[Transaction Date] ) && MONTH( vCurrentDate ) = MONTH( 'Daily Funeral Cover Sales'[Transaction Date] )
)
And your number 4:
Previous day of the previous month Sales = [Latest day of previous month Sales] - 1
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
82 | |
81 | |
52 | |
39 | |
34 |
User | Count |
---|---|
95 | |
78 | |
52 | |
49 | |
47 |