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
MikeKKK
Frequent Visitor

Classic workspace Usage Metric - Trend View calculation

Happy New Year everyone!

 

I need a help on customised Power BI usage metric report.

 

I am using live connection to Usage Metrics dataset (classic workspace)for my customized usage report, and I would like to have "View Trend" (it is only available in new workspace usage metric dataset.) 

 

MikeKKK_0-1641346763759.png

The view trend reflects view count changes over time. It compares the first half of the selected time period with the second half. 

 

Thus, I created a measure as below:

 

View Trend =
VAR StartDate = MIN(Dates[Date])
VAR EndDate = MAX(Dates[Date])
VAR PeriodHalfDaysCount = INT((MAX(Dates[Date])-MIN(Dates[Date]))/2)
VAR MidDate = StartDate+PeriodHalfDaysCount
VAR FirstHalfView = CALCULATE([ViewsCount], DATESBETWEEN(Dates[Date],StartDate,MidDate))
VAR SecondHalfView = CALCULATE([ViewsCount], DATESBETWEEN(Dates[Date],MidDate+1,Enddate))

RETURN DIVIDE (SecondHalfView-FirstHalfView,FirstHalfView)
 
NOTE: [ViewsCount] is the predefined measure in Usage Metrics dataset.
 
This measure returns correct value but the calculation is taking extremely long time.   It is in tens of second while other predefined measures takes less than 1 seconds.
 
Am I doing the right thing here? Is there anything wrong with my measure? 

 

3 REPLIES 3
v-chenwuz-msft
Community Support
Community Support

Hi @MikeKKK ,

 

I recommend you to check the startdate and enddate of each report if they are all the same. Because the relationship between 'Date' table and other report table is one to many and the cross filter direction is single.

 

Then in your code, maybe the following code is better.

VAR FirstHalfView = CALCULATE([ViewsCount], 'Date'[Date]<=MidDate)
VAR SecondHalfView = CALCULATE([ViewsCount], 'Date'[Date]>MidDate)
 
For more methods of optimisation, please refer to the following article.
 
Or you can use an external tool, DAX Studio, to check the performance of dax.


Best Regards

Community Support Team _ chenwu zhu

 

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

@MikeKKK  , Try with this change

 

View Trend =
VAR StartDate = MINX(allselected(Dates) ,Dates[Date])
VAR EndDate = MAXX(allselected(Dates) ,Dates[Date])
VAR PeriodHalfDaysCount = INT((MAX(Dates[Date])-MIN(Dates[Date]))/2)
VAR MidDate = StartDate+PeriodHalfDaysCount
VAR FirstHalfView = CALCULATE([ViewsCount], DATESBETWEEN(Dates[Date],StartDate,MidDate))
VAR SecondHalfView = CALCULATE([ViewsCount], DATESBETWEEN(Dates[Date],MidDate+1,Enddate))

RETURN DIVIDE (SecondHalfView-FirstHalfView,FirstHalfView)

@amitchandak   I can see you have changed the Variable StartDate and EndDate , how does this help?

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.