Forum Discussion
Anonymous
8 years agoNot applicable
Row limlit option for a report
Hi In Power BI, I observe that we don't have an option to limit the number of rows per page i.e. If I have a report with 200 rows, I would like to limit 20 rows per page and hence have 10 pages i...
furiocamilo
5 years agoNew Member
Tried different avenues, but this one worked for me.
Opening the Query Editor, then looking for the button "Advanced Editor" and then when opening the coding section, went form this:
let
Source = Json.Document(Web.Contents("https://publicapi.mycompany.com.au/rosters", [Headers=etc...
I added this:
let
Source = Json.Document(Web.Contents("https://publicapi.mycompany.com.au/rosters?limit=1000", [Headers=etc
And it worked!