Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.