Forum Discussion
Anonymous
7 years agoNot applicable
Flag Current QTR
Hello,
I have to add a column QTR_FLAG in the table. Our FY starts in April.
So, in a table(below) max YrMo will always be a previous month not a current Month.
- If max year YrMo is 201809, then I want to Flag column QTR_FLAG 201809, 201808, and 201807 = 1 all other rows = 0
- If max year YrMo is 201811, then I want to Flag QTR_FLAG 201811 and 201810 = 1 all other rows = 0
So in a nuttshell, only current Fiscal Quarter will have value = 1 all other will be 0s
Thanks is advance
Should be something like this if i understand correctrly:
VAR RefDate = TODAY() VAR YrMoReference = YEAR( EOMONTH( RefDate, -1 ) ) * 100 + MONTH( EOMONTH( RefDate, -1 ) ) VAR QtrReference = CALCULATE( MIN( Dates[qtr] ), ALL( Dates ), Dates[YrMo] = YrMoReference ) VAR FYReference = CALCULATE( MIN( Dates[fy] ), ALL( Dates ), Dates[YrMo] = YrMoReference ) RETURN IF( Dates[FY] = FYReference && Dates[QTR] = QtrReference, 1, 0 )
1 Reply
- LivioLanzoSolution Sage
Should be something like this if i understand correctrly:
VAR RefDate = TODAY() VAR YrMoReference = YEAR( EOMONTH( RefDate, -1 ) ) * 100 + MONTH( EOMONTH( RefDate, -1 ) ) VAR QtrReference = CALCULATE( MIN( Dates[qtr] ), ALL( Dates ), Dates[YrMo] = YrMoReference ) VAR FYReference = CALCULATE( MIN( Dates[fy] ), ALL( Dates ), Dates[YrMo] = YrMoReference ) RETURN IF( Dates[FY] = FYReference && Dates[QTR] = QtrReference, 1, 0 )