Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hi - I've been trying out the feature "add table by example" against the following website: https://hl7-definition.caristix.com/v2/HL7v2.8/TriggerEvents. I've noticed that for this site that Power BI only retrieves a small number of rows (just over a dozen rows) even though there is a large number of rows that could be retrieved (100 rows?) I don't see any pagination controls on the site, so I don't think this is an issue of needing to create a function that pages through the site. Does Power BI have a built-in limit to the number of rows it will query using "add table by example" or does this particular site have some sort of hidden pagination?
The advanced editor doesn't reveal any pagination, either. Weird.
Thanks in advance,
Pete
Hi @PeteZ ,
There is no limit on the number of rows in this feature. The reason why it can only read a dozen rows is because the paging function of the website limits the data capture.
This is a common problem encountered by web spiders.
Get webpage data by providing examples
Best regards,
Lionel Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi -- below is the Advanced Editor code:
let
Source = Web.BrowserContents("https://hl7-definition.caristix.com/v2/HL7v2.8/TriggerEvents"),
#"Extracted Table From Html" = Html.Table(Source, {{"Column1", ".mat-h3"}, {"Column2", "P[cdk-describedby-host=""""]"}}, [RowSelector=".mat-2-line"]),
#"Changed Type" = Table.TransformColumnTypes(#"Extracted Table From Html",{{"Column1", type text}, {"Column2", type text}}),
#"Renamed Columns" = Table.RenameColumns(#"Changed Type",{{"Column1", "Trigger"}, {"Column2", "DescriptionLong"}})
in
#"Renamed Columns"
Thanks
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 29 | |
| 27 | |
| 24 | |
| 24 | |
| 18 |
| User | Count |
|---|---|
| 54 | |
| 50 | |
| 41 | |
| 33 | |
| 29 |