Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
Hi guys!
Im using PREVIOUSDAY to return sales profit on my dashboard, but the date returning isn't the actual date.
For example, yesterday the date returned was 07-31-2022, but the real date was 08-10-2022.
Anybody know what im possibly doing wrong?
Solved! Go to Solution.
@Anonymous , It takes the first day from the context on the calendar if not date is selected. so if page has date range of this month, then it gives the last date, last month
You can try
Last Day = CALCULATE(sum('Table'[Qty]), FILTER(ALL('Date'),'Date'[Date]=max('Date'[Date])-1))
Yesterday = CALCULATE([Net], FILTER('Date','Date'[Date] = Today()-1 ) )
Last Day = CALCULATE(sum('Table'[Qty]), dateadd('Date'[Date],-1, day))
Hi @Anonymous ,
PREVIOUSDAY function will return a table that contains a column of all dates representing the day that is previous to the first date in the dates column, in the current context. Could you please provide the related formula of measure which involved PREVIOUSDAY function? And what's your final expected result? You can show some sample(fake) data(exclude sensitive data) to explain your requirement, later we can provide you a suitable solution. Thank you.
Best Regards
Hi @Anonymous ,
PREVIOUSDAY function will return a table that contains a column of all dates representing the day that is previous to the first date in the dates column, in the current context. Could you please provide the related formula of measure which involved PREVIOUSDAY function? And what's your final expected result? You can show some sample(fake) data(exclude sensitive data) to explain your requirement, later we can provide you a suitable solution. Thank you.
Best Regards
@Anonymous , It takes the first day from the context on the calendar if not date is selected. so if page has date range of this month, then it gives the last date, last month
You can try
Last Day = CALCULATE(sum('Table'[Qty]), FILTER(ALL('Date'),'Date'[Date]=max('Date'[Date])-1))
Yesterday = CALCULATE([Net], FILTER('Date','Date'[Date] = Today()-1 ) )
Last Day = CALCULATE(sum('Table'[Qty]), dateadd('Date'[Date],-1, day))
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 23 | |
| 23 | |
| 21 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 58 | |
| 55 | |
| 43 | |
| 30 | |
| 24 |