Forum Discussion

jonclay's avatar
jonclay
Helper IV
3 years ago
Solved

Comparing year on year figures - problem with calculated column

Hi everyone I have a calculated column that works out the total of various financial transactions between dates. This is shown below and is working fine: Total_NEW_P3_DC3 = IF ( TR_3_DC3_Bur...
  • rajulshah's avatar
    3 years ago

    jonclay ,

     

    You can write the DAX as below:

    PrevYr_Total_NEW_P3_DC3 =
    VAR PrevYearDay = TODAY()-365
    RETURN
    IF ( TR_3_DC3_Burs[pledges.sic_pledgedate] >= DATE ( 2021, 9, 1)
        && TR_3_DC3_Burs[pledges.sic_pledgedate] < PrevYearDay
                && TR_3_DC3_Burs[statuscodename] = "Paid"
                && TR_3_DC3_Burs[si_transactiondateofpayment]  >= DATE ( 2021, 9, 1 )
            && TR_3_DC3_Burs[si_transactiondateofpayment]  <= PrevYearDay,
        ( TR_3_DC3_Burs[sic_dc3totalincgiftaid] ))

     

    Hope this works. Let me know if this didn't work.