Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now

Reply
PeteZ
New Member

Add Table by Example not returning all rows?

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

 

 

 

 

3 REPLIES 3
v-lionel-msft
Community Support
Community Support

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.

Greg_Deckler
Community Champion
Community Champion

@PeteZ - Can you share your Advanced Editor code?


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

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 

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.