Forum Discussion
GFinlayTerumo
3 years agoFrequent Visitor
Notification when a Report is Published to Service
Hi I need to be able to keep track of any/all PowerBI Reports that are created by Users within the company and published to a Workspace. I need knowledge of every single Report that has been/...
- 3 years ago
I do this by accessing the Power BI activity logs.
You can do that with PowerShell:https://learn.microsoft.com/en-us/power-bi/guidance/admin-activity-log
You want "CreateReport" activities:
bcdobbs
3 years agoCommunity Champion
I normally pull the full log each day and save it to folder. Then read it it into power bi using data from folder. That lets me filter in report end.
Example 4 in https://learn.microsoft.com/en-us/power-bi/guidance/admin-activity-log#example-4-view-three-activities-for-n-days however shows how you can select certain activities.
GFinlayTerumo
3 years agoFrequent Visitor
Brilliant thanks again