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

The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!

Reply
FoxEddy
Frequent Visitor

How to get this pagination code work?

Hi there,

 

The following code always returned duplicated records of the ones on the 1st page. For example, there's 155 pages of data, the data on the 1st page gets duplicated 155 times, while no data from 2nd page onward is there. Can someone please help? Thanks a lot.

 

***

 

 

    // Define page size
    pageSize = 500,
    currentPage = 1,

    // funtion to get 1 page of data
    GetVulnerabilitiesPage = (page) =>
        let
            // API call URL
            url = apiUrl & "?page=" & Text.From(page) & "&per_page=" & Text.From(pageSize),

            // Send API call
            source = Json.Document(Web.Contents(url, [Headers=[#"X-Risk-Token"=apiKey]])),

            // Pull data
            vulnerabilities = source[vulnerabilities]
        in
            vulnerabilities,

    // Get total records
    GetEntityCount = () =>
        let
            //API call URL
            url = apiUrl & "?page=1" & "&per_page=" & Text.From(pageSize),

            // API call
            source = Json.Document(Web.Contents(url, [Headers=[#"X-Risk-Token"=apiKey]])),

            // Record number
            value = source[meta][total_count]
        in
            value,

    // Total page count (-150 below is for quick debug purpose, to get less results.)
    VulnCount = GetEntityCount(),
    totalPages = Number.RoundUp(VulnCount / pageSize) - 150,

    // Get all records
    allVulnerabilities = List.Generate(
        () => [Page = 1, Data = GetVulnerabilitiesPage(1)],
        each [Page] <= totalPages,
        each [
            Page = _[Page] + 1, 
            Data = GetVulnerabilitiesPage([Page])
            ],
        each _[Data]

 

 

1 ACCEPTED SOLUTION
lbendlin
Super User
Super User
1 REPLY 1
lbendlin
Super User
Super User

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! It's time to submit your entry.

January Power BI Update Carousel

Power BI Monthly Update - January 2026

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.