Reporting Actuals & Budget via Matrix

@M_K Using this logic you can make modifications to other measures too:
SampleFile - Copy.pbix (104.3 KB)

Revenue =
VAR CurrentSelection =
    SELECTEDVALUE ( 'GL Summary'[Version_ID], "F02" )
VAR Result =
    CALCULATE (
        [GL Amount],
        KEEPFILTERS ( 'GL Chart'[Level1] = "Revenue" ),
        KEEPFILTERS ( 'GL Summary'[Version_ID] = CurrentSelection )
    ) * -1
RETURN
    Result