Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Oh hi
I currenly have a smart measure set that gets me data from 1/1/24 as below. I am rubbish at this so is there a way I can alter it so it just gets me the data from the previous day and calculates the difference for me? I have a day of the year column in the table if that needs to be used?
Day | Outstanding Tasks | Dif from prev day |
1 | 23 | |
2 | 654 | 631 |
3 | 123 | -531 |
4 | 54 | -69 |
5 | 321 | 267 |
6 | 321 | 0 |
7 | 32154 | 31833 |
8 | 245 | -31909 |
9 | 125 | -120 |
10 | 545 | 420 |
11 | 125 | -420 |
12 | 1245 | 1120 |
13 | 654 | -591 |
Solved! Go to Solution.
@WEARLE , Assume you have measure [Outstanding Task]
Join date of you table with a date table and create measure
calculate([Outstanding Task], previousday(date[Date]) )
Day Intelligence - Last day, last non continous day
https://medium.com/@amitchandak.1978/power-bi-day-intelligence-questions-time-intelligence-5-5-5c324...
Hi,
you can use offset function.
create a measure
If this post isuseful to help you to solve your issue consider giving the post a thumbs up and accepting it as a solution !
Thanks @serpiva64 and @amitchandak that worked a treat 🙂
I have made a measure that subtracts
Sorry and thanks for the help! 🙂
Hi,
you can use offset function.
create a measure
If this post isuseful to help you to solve your issue consider giving the post a thumbs up and accepting it as a solution !
@WEARLE , Assume you have measure [Outstanding Task]
Join date of you table with a date table and create measure
calculate([Outstanding Task], previousday(date[Date]) )
Day Intelligence - Last day, last non continous day
https://medium.com/@amitchandak.1978/power-bi-day-intelligence-questions-time-intelligence-5-5-5c324...