Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi
I have a DAX for custom measure with the formula of
Prev Day User Asset USD Latest Rate = CALCULATE(sum('user daily asset'[amount_usd_latest_rate]),PREVIOUSDAY(Dates[Date]))
The DAX will give result like below. Where the prev day value of each day is correct, but on the subtotal of the month, its showing the previous day record of the first date instead of the SUM of all the prev day value.
How can this be fixed?
Thanks
Solved! Go to Solution.
Maybe this:
[Prev Day User Asset USD Latest Rate] =
sumx(
values ( Dates[Date] ),
calculate (
SUM( 'user daily asset'[amount_usd_latest_rate] ),
PREVIOUSDAY( Dates[Date] )
)
)
What should the logic be behind this measure? How do you want to aggregate? You've not shown this... And please always remember that one picture is worth a thousand words 🙂
Hi @daXtreme
I've edited my question to show an example. Hope it is clearer now
THanks
Maybe this:
[Prev Day User Asset USD Latest Rate] =
sumx(
values ( Dates[Date] ),
calculate (
SUM( 'user daily asset'[amount_usd_latest_rate] ),
PREVIOUSDAY( Dates[Date] )
)
)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
15 | |
11 | |
8 | |
8 | |
8 |
User | Count |
---|---|
22 | |
13 | |
11 | |
10 | |
10 |