I am using the below formula to calculate Product Revenue as Month to Date (MTD) for the current year.
This Year Product Revenue = TOTALMTD(SUM('Product All'[Product Revenue]),DATEADD(FILTER(DATESMTD('Product All'[Date]),'Product All'[Date]<TODAY()),0,year))
Please help me with the formula for calculating Yesterday's result and 2 days ago's result.
Solved! Go to Solution.
I finally got the correct formula from my colleague as shown below,
Yesterday's Product Revenue = CALCULATE(SUM('Product All'[Product Revenue]),'Product All'[Date]=TODAY()-1)
I finally got the correct formula from my colleague as shown below,
Yesterday's Product Revenue = CALCULATE(SUM('Product All'[Product Revenue]),'Product All'[Date]=TODAY()-1)
Do you just want whatever the MTD result was yesterday and the day before? You could use the same formula as before but with 'Product All'[Date] < TODAY() - 1, with an exception for the days before you would have a result e.g.:
Yesterday Result =
IF(DAY(TODAY()) = 1, 0,
TOTALMTD(SUM('Product All'[Product Revenue]),DATEADD(FILTER(DATESMTD('Product All'[Date]),'Product All'[Date]<TODAY() - 1),0,year))
)
I dont want the MTD result, , i just want formula for yesterday's result for Product Revenue. Once i get that, i can use -1 in the formula to achieve the day before.
try this,
Yesterday sales =
CALCULATE(SUM(Test[Sales]),DATEADD('Table B'[Date],-1,DAY))
2days ago sales =
CALCULATE(SUM(Test[Sales]),DATEADD('Table B'[Date],-2,DAY))
Thanks,
@omkarsawant30
Yesterday's Product Revenue = CALCULATE(SUMX(All('Product'), '[Product Revenue]),DATEADD(MaxX('Product '[Date]),-1,DAY,))
Try This One
Thanks,
Thennarasu
Hi @Thennarasu_R , i tried your formula, but it shows an error.
Too few arguments were passed to the MAXX function. The minimum argument count for the function is 2.
What is the visual that you are outputing the values? and What is the slicer values in your report page?
Thanks,
I am using a Card to show the output number. There are no slicers, just a filter for Country.
If possible, Could you share the sample data?
Thanks,
I dont see any option to attach excel file
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
Join the biggest FREE Business Applications Event in LATAM this February.
User | Count |
---|---|
213 | |
48 | |
45 | |
44 | |
40 |
User | Count |
---|---|
266 | |
211 | |
103 | |
75 | |
66 |