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
Syndicate_Admin
Administrator
Administrator

Merge to find result

Good morning

I have a problem that I don't know how to fix.

I need to combine two columns to get me one percentage or another and compare it to a third to see if there are errors

One column is Category and another Section. I attach the table with the output percentage. What I want to know is how to do the operation to create another column with the percentage that corresponds to it and compare it with the existing one in case there are errors, since there are several conditionals.

I hope I have explained myself

Thanks a lot

StretchCategory 1Category 2Category 3
Up to 30.000 €90%50%30%
From 30.001 € to 60.000 €60%35%20%
from 60.001 € to 100.000 €30%20%10%

1 ACCEPTED SOLUTION
lbendlin
Super User
Super User

The first thing you want to do is get the data into a usable format by unpivoting it.

 

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WCi1QKMlXMDbQMzAwUHjUtEZJR8nSQBVImoJJYyAZqxOt5FaUnwtRZQhSBdJjhqzHDKLaFEQaQfWkgfSYoegxNEDWZGwAU66jZAjSFAsA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Stretch = _t, #"Category 1" = _t, #"Category 2" = _t, #"Category 3" = _t]),
    #"Unpivoted Other Columns" = Table.UnpivotOtherColumns(Source, {"Stretch"}, "Attribute", "Value")
in
    #"Unpivoted Other Columns"

 

Much better:

lbendlin_0-1629655358904.png

Now please explain the expected outcome based on this data.

View solution in original post

2 REPLIES 2
lbendlin
Super User
Super User

The first thing you want to do is get the data into a usable format by unpivoting it.

 

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WCi1QKMlXMDbQMzAwUHjUtEZJR8nSQBVImoJJYyAZqxOt5FaUnwtRZQhSBdJjhqzHDKLaFEQaQfWkgfSYoegxNEDWZGwAU66jZAjSFAsA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Stretch = _t, #"Category 1" = _t, #"Category 2" = _t, #"Category 3" = _t]),
    #"Unpivoted Other Columns" = Table.UnpivotOtherColumns(Source, {"Stretch"}, "Attribute", "Value")
in
    #"Unpivoted Other Columns"

 

Much better:

lbendlin_0-1629655358904.png

Now please explain the expected outcome based on this data.

Thank you very much for your help

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.