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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric 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
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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