Forum Discussion

IVERK-EG's avatar
IVERK-EG
Frequent Visitor
8 years ago

YTD as a Variable in DAX

Hi'

I have a problem with this dynamic measure. It dosent return the Year-to-Date and Month-to-Date Calculation when the dimensions MeaPer is used. The Measure correctly return the Accounting and Reporting values, but not the time-intelligence measures.

 

Any Ideas ? :)

-------------------------------------------------------------------

Net Invoiced Amount NEW :=
VAR Acc =
    SUM ( SalesInvoiceTransactions[NetInvoiceAmountAcc] )
VAR Rep =
    SUM ( SalesInvoiceTransactions[NetInvoiceAmountRep] )
VAR Cur =
    IF (
        HASONEVALUE ( Parameters[Currency] );
        SWITCH (
            VALUES ( Parameters[Currency] );
            "Accounting"; Acc;
            "Reporting"; Rep;
            Rep
        );
        Rep
    )
VAR Per =
    IF (
        HASONEVALUE ( MeaPer[Time] );
        SWITCH (
            VALUES ( MeaPer[Time] );
            "YTD"; TOTALYTD ( Cur; 'Calendar'[Date] );
            "MTD"; TOTALMTD ( Cur; 'Calendar'[Date] );
            BLANK ()
        );
        Cur
    )
RETURN
    Per

------------------------------------------------------------

 

Best Regard

Ivan

 

1 Reply

  • v-jiascu-msft's avatar
    v-jiascu-msft
    Icon for Microsoft Employee rankMicrosoft Employee

    Hi Ivan, 

     

    I'm afraid we can't give any suggestions without data. There are four tables. The records and the relationships could cause this issue. There are even two datetime fields from two tables. 

    Can you share the file? Please mask or delete the sensitive parts.

     

    Best Regards,

    Dale