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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Tini
Frequent Visitor

I need to take this down, sorry.

I need to take this down, sorry.




 

 

1 REPLY 1
amitchandak
Super User
Super User

@Tini , Return the rowcount difference for a view name over available dates

Use Time intelligence along with date table, joined with date of your table

example measures

 

This Day =sum('Table'[rowcount])

 

This Day = CALCULATE(sum('Table'[rowcount]), FILTER(ALL('Date'),'Date'[Date]=max('Date'[Date])))

 

Last Day = CALCULATE(sum('Table'[rowcount]), FILTER(ALL('Date'),'Date'[Date]=max('Date'[Date])-1))

 

Last Day = CALCULATE(sum('Table'[rowcount]), previousday('Date'[Date]))

 

Day Intelligence - Last day, last non continous day
https://medium.com/@amitchandak.1978/power-bi-day-intelligence-questions-time-intelligence-5-5-5c324...

 

 

Problem 2: Get value of total rowcount change per view name and filter top n views with highest total rowcount change value

You can use TOPN at visual level filter or TOPN function

 

TOPN: https://youtu.be/QIVEFp-QiOk
TOPN with Numeric Parameter -https://youtu.be/cN8AO3_vmlY?t=26448

 

 

Create time series graph for those top n views, grouped by view name

Use a filter TOPN or use TOPN measure as filter at visual level

 

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.