Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Preparing for a certification exam? Ask exam experts all your questions on May 15th. Register now.
The data table used is below
I have a slicer nValue, with values from 1 to 20.
Case 1 (working as expected):
Based on the slicer selection, the data table should show the top products based on Index values.
Measures used:
1. TotalSales = SUM('Table'[Amount])
Case 2 (Not working):
Based on the slicer selection, the data table should sort the Products based on the top N random values.
However, the results don't come as expected.
Solved! Go to Solution.
Hi, @Anonymous
Measure Random and Measure Top_Random perform different random number calculations. The random number generated by Measure op_Random is not the same as the random number generated by Measure Random.
And due to the characteristics of the TOPN function, the returned result may be more than N rows.
If there is a tie, in order_by values, at the N-th row of the table, then all tied rows are returned. Then, when there are ties at the N-th row the function might return more than n rows.
You can read these articles below for more information
Refer:
Filtering the Top 3 products for each category in Power BI
Filtering the top products alongside the other products in Power BI
Showing the top 5 products and Other row
Best Regards,
Community Support Team _ Zeon Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Anonymous
Measure Random and Measure Top_Random perform different random number calculations. The random number generated by Measure op_Random is not the same as the random number generated by Measure Random.
And due to the characteristics of the TOPN function, the returned result may be more than N rows.
If there is a tie, in order_by values, at the N-th row of the table, then all tied rows are returned. Then, when there are ties at the N-th row the function might return more than n rows.
You can read these articles below for more information
Refer:
Filtering the Top 3 products for each category in Power BI
Filtering the top products alongside the other products in Power BI
Showing the top 5 products and Other row
Best Regards,
Community Support Team _ Zeon Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
78 | |
76 | |
69 | |
49 | |
42 |
User | Count |
---|---|
56 | |
47 | |
33 | |
32 | |
28 |