Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
joshua1990
Post Prodigy
Post Prodigy

Value for current Fiscal Month regardless the filter

Hello everyone!

I have a matrix with different measures.

In total there are 5 measures. 4 measures based on the current fiscal week. For this purpose I have a filter on this visual with the current month (TRUE/ FALSE). The last measure should sum up all values for the current MONTH.

But how is this possible, since I have a filter for the current week for the visual?

The measure is something like SUM ( Sales[Sales]).

I allready have the current month column in the calendar. Our fiscal months have specific start and end dates - if this is a useful information.

 

Best Regards

1 ACCEPTED SOLUTION
Anonymous
Not applicable

// Assumptions:
// You've got a stand-alone Calendar table
// that is a date table marked as such
// in the model. [Base Measure] is the
// measure you want to calculate over
// the current month. 'Calendar'[Current Month]
// is a TRUE/FALSE field in Calendar
// marking with TRUE the days that belong to
// the current (fiscal?) month.

[Base Measure for Current Month] =
CALCULATE(
    [Base Measure],
    'Calendar'[Current Month],
    ALL( 'Calendar' )
)

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

// Assumptions:
// You've got a stand-alone Calendar table
// that is a date table marked as such
// in the model. [Base Measure] is the
// measure you want to calculate over
// the current month. 'Calendar'[Current Month]
// is a TRUE/FALSE field in Calendar
// marking with TRUE the days that belong to
// the current (fiscal?) month.

[Base Measure for Current Month] =
CALCULATE(
    [Base Measure],
    'Calendar'[Current Month],
    ALL( 'Calendar' )
)
harshnathani
Community Champion
Community Champion

Hi @joshua1990 ,

 

Please see this post regarding How to Get Your Question Answered Quickly:

https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490

 

Can you share some sample data or screenshots of your visualization.

 

Regards,
Harsh Nathani
Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.