Forum Discussion
Values Not Displaying in Matrix
nickvb , This formula need one change. try that if that can work
BS Current YTD =
IF (
HASONEVALUE ( 'GL Balance'[ACCOUNTING_YEAR_KEY] ),
CALCULATE (
[CY],
FILTER (
ALL( 'GL Balance'[ACCOUNTING_YEAR_KEY] ),
'GL Balance'[ACCOUNTING_YEAR_KEY] in VALUES ('GL Balance'[ACCOUNTING_YEAR_KEY] )),
FILTER (
ALL( Date_Table[IFS Period] ),
Date_Table[IFS Period] <= MAX (Date_Table[IFS Period] )
)
),
BLANK ()
) *-1
amitchandak thanks for the response. I tried your formula, but unfortunately it is yielding the same result
- nickvb5 years agoFrequent Visitor
One other nuance I noticed. It appears as long as there is no change in the next period it is showing up blank. However, if the value changes in the next period then it will re-appear and display correctly.
- amitchandak5 years agoSuper User
nickvb , Also check the role of HASONEVALUE, is working as expected. Remove that if part and try