Forum Discussion
hemann
4 years agoHelper I
Reference Maximum Text into table visual
Hi, I am wanting to create a table visual (as per below) for Top 5 series with measures. I have been successful except for 'most active state' calculation (refer circled). Below is the data used to...
- 4 years ago
Give this a try.
Most Active State = FIRSTNONBLANK ( TOPN ( 1, VALUES ( 'Table'[State] ), CALCULATE ( SUM ( 'Table'[Volume] ) ) ), 1 )
jdbuchanan71
4 years agoSuper User
Give this a try.
Most Active State =
FIRSTNONBLANK (
TOPN ( 1, VALUES ( 'Table'[State] ), CALCULATE ( SUM ( 'Table'[Volume] ) ) ),
1
)