March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello everybody!
I would like to sum all the values for the last business month.
The business months have individual start and end dates.
That means I can't use previousmonth function.
How can I transfer that code for business months?
=var currentMonth = Month(today())-1
Return
CALCULATE(sum('DB'[Values]);'Calendar'[Business Month Number] = currentMonth)
Hello @joshua1990
Is Business Month Number a sequential value increments by one for each month across multiple years (for example Year*12 + Month)?
If it's not, I suggest you create such a column in 'Calendar' first.
Once you do you have such a Business Month Number column, you could write something like this:
=
VAR currentMonth =
CALCULATE (
MAX ( 'Calendar'[Business Month Number] );
'Calendar'[Date] = TODAY ();
ALL ( 'Calendar' ) // Not required if 'Calendar' is marked as a date table
) - 1
RETURN
CALCULATE (
SUM ( 'DB'[Values] );
'Calendar'[Business Month Number] = currentMonth;
ALL ( 'Calendar' )
)
Regards,
Owen
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
23 | |
16 | |
15 | |
7 | |
6 |
User | Count |
---|---|
33 | |
29 | |
16 | |
13 | |
12 |