Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi All,
I have used table visualization for Vendor details data. The problem is when too much data. Then the table need to scroll down. I dont want my user to scroll the data because this project will display on TV as smartboard. My idea is set a maximun row data in table. The the rest data will display automatically on the next page. It is possible?
I have plan to use index by setting on the visual filter. But, the problem will comes if my data more that i set in visual filter. Because this data will referesh and update day by day. It is there any others way?
Thanks for your help!
Solved! Go to Solution.
In DAX, table has no sequence for records internally. To get the maximum row, you must be based on a column like Index or Date. Then you can create a calculated table like below:
Table 2 = FILTER(ALL('Calendar'),'Calendar'[Date]=MAX('Calendar'[Date]))
Regards,
In DAX, table has no sequence for records internally. To get the maximum row, you must be based on a column like Index or Date. Then you can create a calculated table like below:
Table 2 = FILTER(ALL('Calendar'),'Calendar'[Date]=MAX('Calendar'[Date]))
Regards,
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 37 | |
| 33 | |
| 32 | |
| 29 |
| User | Count |
|---|---|
| 133 | |
| 88 | |
| 85 | |
| 68 | |
| 64 |