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
joshua1990
Post Prodigy
Post Prodigy

SUM last business month

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)

 

1 REPLY 1
OwenAuger
Super User
Super User

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

 


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
Twitter
LinkedIn

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.

Top Solution Authors