Forum Discussion

STS_Joshua's avatar
STS_Joshua
Helper II
7 years ago
Solved

UTC time zone work around help

Hi all, I have a report that uses the TODAY() function to calculate a few things such as sales made today: today = CALCULATE(SUMX('Open','Open'[Quantity]*'Open'[Price]*'Open'[DocRate]),'Open'[DocDa...
  • v-cherch-msft's avatar
    v-cherch-msft
    7 years ago

    Hi STS_Joshua 

    Please check if below formula could help.

    today =
    SUMX (
        FILTER ( 'Open', 'Open'[DocDate] = LASTDATE ( 'Open'[DocDate] ) ),
        'Open'[Quantity] * 'Open'[Price] * 'Open'[DocRate]
    )
    

    Regards,