Forum Discussion
Anonymous
6 years agoNot applicable
Export issues
Hi Folks, I developed one of the report filtered TOP 50 records in the report but when i export into excel it's displaying 58 records, how to overcome to show only 50 records instead of 58 records. ...
v-alq-msft
6 years agoCommunity Support
Hi, Anonymous
I'd like to suggest you create two measures and a what-if parameter. I created data to reproduce your scenario.
Table:
You may create two measures as below.
Rank =
RANKX(
ALL('Table'),
CALCULATE(SUM('Table'[Score]))
)
Isdisplay =
IF(
[Rank]<=SELECTEDVALUE(Parameter[Parameter]),
1,0
)
Then you need to put 'Isdisplay' in the visual level filter to display the result.
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.