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
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
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.