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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
v-ortsun
New Member

Consolidating data across multiple SharePoint Surveys?

I've created a sharepoint site dedicated for participant feedback surveys for events. At this moment, there are 30 surveys (lists) and the expectation is that it will double in the next 6 months. Strategic management would like to collect the information across surveys for analysis. I know I could add each list individually into PowerBI but is there a better way to collect this information?

 

I've also considered creating a "Linked Source" within SharePoint then have PowerBI refer to that but it's not working as expected.

 

Any advice/suggestions is deeply appreciated!

 

- Orton

1 REPLY 1
v-shex-msft
Community Support
Community Support

Hi @v-ortsun,

 

Current power bi not support use multiple certificates to get data from a same sharepoint server.

 

>>I know I could add each list individually into PowerBI but is there a better way to collect this information?

I'd like to suggest you merge the specified document and analysis this merge file.

 

Steps:

1. Get data from the sharepoint.
2. Filter at "Folder Path" and "Extension" columns to choose the specify files.
4. Merge these content and analysis them.
5. Combine the table list from above steps.

 

Query sample:

 

let
    Source = SharePoint.Files("https://xxxxxx.sharepoint.com/sites/xxxxx", [ApiVersion = 15]),
    #"Filtered Rows" = Table.SelectRows(Source, each [Folder Path] = "https://xxxxxx.sharepoint.com/sites/xxxxx/Shared Documents/" and [Extension] = ".xlsx" ),
    TableList = Table.SelectColumns(Table.AddColumn(#"Filtered Rows", "Custom", each Excel.Workbook([Content])),"Custom"),
    Combine= Table.Combine(TableList[Custom])
in
    Combine

 

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.