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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
AGo
Post Patron
Post Patron

Condition a measure by what is in scope in the graph

I've got an histogram with MeasureA=SUM([ValueA]) by Year and Month based on fields on TableA.

I've got TableB with field [ValueB] and MeasureB=SUM([ValueB]).

I would like to create a MeasureC=MeasureA+MeasureB where MeasureB adds its value on the histogram only on current year bar or current year and current month.

 

Is it possible?

Thanks in advance

 

1 ACCEPTED SOLUTION
v-alq-msft
Community Support
Community Support

Hi, @AGo 

 

Based on your description, I created data to reproduce your scenario.

Table A:

d1.png

Table B:

d2.png

 

You may create measures as follows.

 

MeasureA = SUM('Table A'[ValueA])

MeasureB = SUM('Table B'[ValueB])

MeasureC = 
var _currentmonth = MONTH(TODAY())
var _currentyear = YEAR(TODAY())
var _date = MAX('Table A'[Date])

return
IF(
   MONTH(_date) = _currentmonth&&YEAR(_date)=_currentyear,
   CALCULATE(
       [MeasureA],
       FILTER(
           ALL('Table A'),
           'Table A'[Date].[MonthNo] = _currentmonth&&'Table A'[Date].[Year]=_currentyear
       )
   )+
   CALCULATE(
       [MeasureB],
       FILTER(
           ALL('Table B'),
           'Table B'[Date].[MonthNo] = _currentmonth&&'Table B'[Date].[Year]=_currentyear
       )
   ),
   [MeasureA]
) 

 

 

Result:

d3.png

 

Best Regards

Allan

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-alq-msft
Community Support
Community Support

Hi, @AGo 

 

Based on your description, I created data to reproduce your scenario.

Table A:

d1.png

Table B:

d2.png

 

You may create measures as follows.

 

MeasureA = SUM('Table A'[ValueA])

MeasureB = SUM('Table B'[ValueB])

MeasureC = 
var _currentmonth = MONTH(TODAY())
var _currentyear = YEAR(TODAY())
var _date = MAX('Table A'[Date])

return
IF(
   MONTH(_date) = _currentmonth&&YEAR(_date)=_currentyear,
   CALCULATE(
       [MeasureA],
       FILTER(
           ALL('Table A'),
           'Table A'[Date].[MonthNo] = _currentmonth&&'Table A'[Date].[Year]=_currentyear
       )
   )+
   CALCULATE(
       [MeasureB],
       FILTER(
           ALL('Table B'),
           'Table B'[Date].[MonthNo] = _currentmonth&&'Table B'[Date].[Year]=_currentyear
       )
   ),
   [MeasureA]
) 

 

 

Result:

d3.png

 

Best Regards

Allan

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

JarroVGIT
Resident Rockstar
Resident Rockstar

Well yes but that really depends on your datastructure to have an exact answer. It will be somewhere along the lines of this:

MeasureC =
VAR _curSelectedYear = YEAR(MAX(Table[Date]))
VAR _curSelectedMonth = MONTH(MAX(Table[Date]))
VAR _currentYear = YEAR(TODAY())
VAR _currentMonth = MONTH(TODAY())
VAR _toAdd = IF(_curSelectedYear = _currentYear && _curSelectedMonth = _currentMonth, [MeasureB], 0)
RETURN
[MeasureA] + _toAdd

SOmething like this?

 

Kind regards

Djerro123

-------------------------------

If this answered your question, please mark it as the Solution. This also helps others to find what they are looking for.

Keep those thumbs up coming! 🙂





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors