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
dodiyal
Frequent Visitor

Unable to create report in Power Bi

Hello Team,

I have one data set which i wish to convert into below mentioned table, can you help.

Regional Support LocationCustomer Service Experience
Turkey, Middle East, Africa, Southern AsiaUnacceptable
Latin AmericaUnacceptable
Asia PacificUnacceptable
Latin AmericaBelow Average
Latin AmericaAverage
Latin AmericaAverage
ChinaBelow Average
EuropeUnacceptable
Latin AmericaAbove Average
EuropeBelow Average
EuropeGood

The desired outuput table is

Mode (Percent)UnacceptableBelow AverageAverageAbove AverageGood
Customer Service Experience0.40.30.20.10.1
1 ACCEPTED SOLUTION
v-kkf-msft
Community Support
Community Support

Hi @dodiyal ,

 

Please try the following code in Power Query Editor: 

 

let
    Source = Table.FromValue(#"Table"),
    #"Grouped Rows" = Table.Group(Source, {"Customer Service Experience"}, {{"Count", each Table.RowCount(_), Int64.Type}}),
    #"Added Custom" = Table.AddColumn(#"Grouped Rows", "Custom", each [Count] / List.Sum(#"Grouped Rows"[Count])),
    #"Changed Type1" = Table.TransformColumnTypes(#"Added Custom",{{"Custom", Percentage.Type}}),
    #"Removed Columns" = Table.RemoveColumns(#"Changed Type1",{"Count"}),
    #"Added Custom1" = Table.AddColumn(#"Removed Columns", "Mode (Percent)", each "Customer Service Experience"),
    #"Pivoted Column" = Table.Pivot(#"Added Custom1", List.Distinct(#"Added Custom1"[#"Customer Service Experience"]), "Customer Service Experience", "Custom", List.Sum)
in
    #"Pivoted Column"

image.png

 

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.

Best Regards,
Winniz

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-kkf-msft
Community Support
Community Support

Hi @dodiyal ,

 

Please try the following code in Power Query Editor: 

 

let
    Source = Table.FromValue(#"Table"),
    #"Grouped Rows" = Table.Group(Source, {"Customer Service Experience"}, {{"Count", each Table.RowCount(_), Int64.Type}}),
    #"Added Custom" = Table.AddColumn(#"Grouped Rows", "Custom", each [Count] / List.Sum(#"Grouped Rows"[Count])),
    #"Changed Type1" = Table.TransformColumnTypes(#"Added Custom",{{"Custom", Percentage.Type}}),
    #"Removed Columns" = Table.RemoveColumns(#"Changed Type1",{"Count"}),
    #"Added Custom1" = Table.AddColumn(#"Removed Columns", "Mode (Percent)", each "Customer Service Experience"),
    #"Pivoted Column" = Table.Pivot(#"Added Custom1", List.Distinct(#"Added Custom1"[#"Customer Service Experience"]), "Customer Service Experience", "Custom", List.Sum)
in
    #"Pivoted Column"

image.png

 

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.

Best Regards,
Winniz

If this post helps, then please consider Accept it as the solution to help the 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.