문제

I have 2 SharePoint List.

Project(Project_ID, Project_Title)

and

Project_Tasks(Project_ID, Tasks_Title) [here Project_ID is lookup column from Project list.]

I have data as:

enter image description here

I am able to generate the following report.

enter image description here

But My requirement is to generate a report like

enter image description here

In this case, the Pivoting will not help me. I have already tried.

Please help. Any reference link, tutorial video or suggestion is most welcome

도움이 되었습니까?

해결책

Fun question!

You can use a Power Query feature named "Extract Values" to do this.

In my example, I renamed the Title column in each list to Project_ID and Tasks_Title. When these are brought into Power BI they are displayed with the original Title name and will need to be renamed.

Steps:

  1. In your Project_Tasks list, update the Project_ID lookup to also display Project_Title. enter image description here enter image description here

  2. In a new Power BI project, click Get Data and pick your SharePoint Project_Tasks lists. (Project list not needed.)

  3. Click Edit, not Load. Your are now in Power Query.

  4. Delete the uneeded columns. (a lot of them!) You should now see id (optional). Title (or Tasks_Title) and Project ID

  5. If you renamed the Title column in SharePoint, rename the Title column here to Tasks_Title.

  6. Click the Group By button in the Home or Transform ribbon.

  7. Click the double headed arrow at the top of the Project_ID column, unselect all of the columns and select Project_Title and Title (or Project_ID). Uncheck "User original column name as prefix" and click OK.

  8. If you renamed the Title column in SharePoint, rename the Title column here to Project_ID.

  9. Click the Group By button in the Home or Transform ribbon.

  10. Click Advanced.

  11. Select Project_ID from the dropdown.

  12. Click Add grouping and select Project_Title from the dropdown.

  13. Click the Operation dropdown and select Add Rows.

  14. Change the "New column name" to TaskInfo.

  15. Click OK.

  16. In the Add Column ribbon click Custom Column.

  17. Enter this formula: =Table.Column([TaskInfo], "Tasks_Title") (This is the "magic" part 1.)

  18. Change the column name to "Tasks".

  19. Click OK.

  20. Click the double headed arrow at the top of the TaskInfo column and click "Extract Values...". (This is the "magic" part 2.)

  21. Select a delimiter from the dropdown list, or a custom value like ", ". Click OK.

  22. You can now delete the TaskInfo column.

  23. Click Close & Apply and continue with your report.

 

The result

enter image description here

 

My "M" code from the Power Query Advanced Editor (your URL and GUIDs will be different)

let
    Source = SharePoint.Tables("https://yourDomain.sharepoint.com", [ApiVersion = 15]),
    #"0019cad5-ca73-4195-808d-c94a82671472" = Source{[Id="0019cad5-ca73-4195-808d-c94a82671472"]}[Items],
    #"Renamed Columns" = Table.RenameColumns(#"0019cad5-ca73-4195-808d-c94a82671472",{{"ID", "ID.1"}}),
    #"Removed Columns" = Table.RemoveColumns(#"Renamed Columns",{"FileSystemObjectType", "ServerRedirectedEmbedUri", "ServerRedirectedEmbedUrl", "ContentTypeId", "ComplianceAssetId", "Project_IDId", "ID.1", "Modified", "Created", "AuthorId", "EditorId", "OData__UIVersionString", "Attachments", "GUID", "FirstUniqueAncestorSecurableObject", "RoleAssignments", "AttachmentFiles", "ContentType", "GetDlpPolicyTip", "FieldValuesAsHtml", "FieldValuesAsText", "FieldValuesForEdit", "File", "Folder", "LikedByInformation", "ParentList", "Properties", "Versions", "Author", "Editor"}),
    #"Renamed Columns1" = Table.RenameColumns(#"Removed Columns",{{"Title", "Tasks_Title"}}),
    #"Expanded Project_ID" = Table.ExpandRecordColumn(#"Renamed Columns1", "Project_ID", {"Title", "Project_Title"}, {"Title", "Project_Title"}),
    #"Renamed Columns2" = Table.RenameColumns(#"Expanded Project_ID",{{"Title", "Project_ID"}}),
    #"Grouped Rows" = Table.Group(#"Renamed Columns2", {"Project_ID", "Project_Title"}, {{"TaskInfo", each _, type table}}),
    #"Added Custom" = Table.AddColumn(#"Grouped Rows", "Tasks", each Table.Column([TaskInfo], "Tasks_Title")),
    #"Extracted Values" = Table.TransformColumns(#"Added Custom", {"Tasks", each Text.Combine(List.Transform(_, Text.From), ", "), type text})
in
    #"Extracted Values"

     

I found a YouTube video that shows an example that is just a little more complex then your needs, but shows how it is done.

https://www.youtube.com/watch?v=nJ7LzwiSwnw

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top