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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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