cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Anonymous
Not applicable

Need help in DAX

 

Hello Team,


We have Exporting the Audit logs into the SQL Database and We are trying to get the list of reports/datasets/dataflows/dashboards not being access for 180 days based on last creation time of the record, Activity type from the audit logs database.

 

 

Problem scenario

  1. We are able to get the list of the reports/dataset not been accessed for 180 days.
  2. If the report/dashboard gets deleted by the developer or someone and there will be separate record in the delete dataset Activity.
  3. We are trying to get the data in the table visual which contains the report name and dataset name workspace name which is still existing and not been access and deleted for 180 days.
  4. Need help to achieve the logic using DAX or M-query

Your help will be appreciated!!

 

Table data 

DatasetNameWorkSpaceNameEarliest CreationTime max per DatasetNameActivity
Admin Tools _OriginalProject Online PowerBI Reports9/6/2019 17:07DeleteDataset
Admin Tools 550Project PowerBI 9/6/2019 17:07DeleteDataset
HR DashboardAnalytics9/11/2019 19:43DeleteDataset
HR Dashboard V2Analytics9/10/2019 23:46DeleteDataset
HR DashboardAnalytics9/11/2019 19:43ViewReport
HR Dashboard V2Analytics9/10/2019 23:46ViewReport
Admin Tools _OriginalProject PowerBI 9/6/2019 16:23ViewReport


Expected Table data 

DatasetNameWorkSpaceNameEarliest CreationTime max per DatasetNameActivity
Admin Tools 550Project Online PowerBI Reports9/6/2019 17:07DeleteDataset



Expected Table 

Thank you

 

1 ACCEPTED SOLUTION
V-pazhen-msft
Community Support
Community Support

@Anonymous 

You can see the names that no activity and more than 180 days until now with the following:

 

Column = IF(DATEDIFF([Earliest CreationTime max per DatasetName],TODAY(),DAY)>180 && [Activity]<>"DeleteDataset" && [Activity] <>"View Report", TRUE(),FALSE())

 

 

Then you can drag the columns into a table visual and filter with the this flag column to show the rows that matches the condition.

 

Paul Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
V-pazhen-msft
Community Support
Community Support

@Anonymous 

You can see the names that no activity and more than 180 days until now with the following:

 

Column = IF(DATEDIFF([Earliest CreationTime max per DatasetName],TODAY(),DAY)>180 && [Activity]<>"DeleteDataset" && [Activity] <>"View Report", TRUE(),FALSE())

 

 

Then you can drag the columns into a table visual and filter with the this flag column to show the rows that matches the condition.

 

Paul Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

I did not get it completely. But you can have flag-like

flag = if(datediff(	[Earliest CreationTime max per DatasetName], today(), day)>180 &&  [Activity]="DeleteDataset" ,1, 0)

 

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

MPPC 2023 PBI Carousel

Power Platform Conference-Power BI and Fabric Sessions

Join us Oct 1 - 6 in Las Vegas for the Microsoft Power Platform Conference.

Top Solution Authors