Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Combine two measures

Hello, 

 

I have two measures that I would like to combine into one.    The reason for this is the one of the measures gives me part of the result I am looking for, and the other measure gives me the other part.  

 

Measure 7 gives me the full month values for Jan and Feb because the formula looks at the 1st day of the next month  (our accounting system reports reconciled numbers the next day....so Feb 1 it reports the full month of Jan....Mar 1 it reports the full month of Feb...and so on.  

 

But because March is not finished yet, the value in the 4th column is blank (see table below).    I do get the correct MTD value for March using the lastnonblankvalue measure below  (see March in 5th column).  

 

Somehow, I would like to combine the two of these?  

 

Last Nonblank = LASTNONBLANKVALUE ( Dates[Date], [Actual Value Measure] )*-1

 

 

Measure 7 =
VAR _year = SELECTEDVALUE(Dates[Year])
VAR _month = SELECTEDVALUE(Dates[MonthName])
VAR _date = CALCULATE(MIN(Dates[Date]), FILTER(ALL(Dates), Dates[Year] = _year && Dates[MonthName] = _month))
VAR _lastDate = EOMONTH(_date, -0) +1

RETURN
CALCULATE(SUM(Flu_Snapshots[Actual Value]), FILTER(ALL(Dates[Date]), Dates[Date] = _lastDate))*-1
 
 
  • Anonymous's avatar
    Anonymous
    6 years ago

    Greg_Deckler   Genius Greg!   And so elegant.   

     

    Will mark as solved...but one additional question if I may:    The grand total is not summing correctly on any of my previous tries and also on the one you just gave me.   Is there a way to fix that?      I'd ideally like it to sum the three months.  

     

3 Replies