This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hello
I have an excel sheet being updated every week and I would need to compare data of current week with the previous week.
e.g. below, I need to know how many requsitions were changed to status Closed... I'm looking for calculation where the result for Closed reqisitions (in below examples 2..)
Thank you very much!
| Requisition number | Date | Status |
ABC | 6.8.2021 | Approved |
| DEF | 6.8.2021 | Approved |
| GHI | 6.8.2021 | Approved |
ABC | 13.8.2021 | Closed |
| DEF | 13.8.2021 | Closed |
| GHI | 13.8.2021 | Approved |
Solved! Go to Solution.
Hi @KatkaS
Assume that once an item's status was changed to Closed, it would not change again, you can use below measure to calcuate the weekly number of requisitions that changed to Closed.
Measure =
VAR __thisWeekCount = COUNTROWS(FILTER(ALL('Table'),'Table'[Date]=MAX('Table'[Date]) && 'Table'[Status]="Closed"))
VAR __lastWeekCount = COUNTROWS(FILTER(ALL('Table'),'Table'[Date]=MAX('Table'[Date])-7 && 'Table'[Status]="Closed"))
RETURN
__thisWeekCount - __lastWeekCount
Regards,
Community Support Team _ Jing
If this post helps, please Accept it as the solution to help other members find it.
Hi @KatkaS
Assume that once an item's status was changed to Closed, it would not change again, you can use below measure to calcuate the weekly number of requisitions that changed to Closed.
Measure =
VAR __thisWeekCount = COUNTROWS(FILTER(ALL('Table'),'Table'[Date]=MAX('Table'[Date]) && 'Table'[Status]="Closed"))
VAR __lastWeekCount = COUNTROWS(FILTER(ALL('Table'),'Table'[Date]=MAX('Table'[Date])-7 && 'Table'[Status]="Closed"))
RETURN
__thisWeekCount - __lastWeekCount
Regards,
Community Support Team _ Jing
If this post helps, please Accept it as the solution to help other members find it.
THANK YOU VERY MUCH, JING!!!
Hey @KatkaS ,
is the format of the values identical?
If yes, why don't you put all the Excel in one folder and load all of them with the load folder option? There you can merge all of the data into one table. Afterwards you can do you analysis in Power BI.
Hello Denis,
that's what I do already - I have on excel that is updated on weekly basis and I'm adding the new version to the folder which I then refresh in pbi..
but once it is uploaded I don't know how to achieve what I need (= calculate number of requisitions that changed status from Approved to Closed since last update..)
I hope I made myself clearer now..
Thank you!
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 31 | |
| 25 | |
| 21 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 65 | |
| 41 | |
| 28 | |
| 22 | |
| 22 |