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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
guenfood
New Member

Display value by step

Hi,

 

I've got a table with thiese kind of values

ServiceDateProblemStart DateEnd DateStatus
Windows14/02Blue screen14/0214/02Completed
Excel14/02macro stuck on launch14/0214/02Completed
Word14/02mail merge error14/02 In progress
Outlook14/02no email synchronization14/02 In progress

 

I'd like to display informations in my report like this :

 

Service : Windows

Problem : Blue screen

Start Date : 14/02

End Date : 14/02

Status : Completed

 

Service : Excel

Problem : macro stuck on launch

Start Date : 14/02

End Date : 14/02

Status : Completed

 

.....

 

This report is daily, based on Date, and each days, i could have more or less service to display.

How can i create this type of report ?

Thanks for your help.

1 ACCEPTED SOLUTION
v-henryk-mstf
Community Support
Community Support

Hi @guenfood ,

 

Based on your description, I think you can convert that table in power query first and then merge the two columns. I did the test with the following reference:

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("hY29CsMwDIRfRXgO9Ic+QUuHTh0zhAzGFqmJLQXJpj9PXxMouEs7iAPd3XfDYPpAnu9qOrM7bLb7qsdYENQJIjXfj544LREzejN2gzk/HMbGTdYJg+biZmCCaAu5219Kz+K/ICFCQpkQUISlsaDehWARngRV1/a15Mg8NyliwBWizzovTOFlc2D6BRrf", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Service = _t, Date = _t, Problem = _t, #"Start Date" = _t, #"End Date" = _t, Status = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Service", type text}, {"Date", type text}, {"Problem", type text}, {"Start Date", type text}, {"End Date", type text}, {"Status", type text}}),
    #"Unpivoted Columns" = Table.UnpivotOtherColumns(#"Changed Type", {}, "Attribute", "Value"),
    #"Added Custom" = Table.AddColumn(#"Unpivoted Columns", "list_", each [Attribute] & ":" & [Value]),
    #"Removed Columns" = Table.RemoveColumns(#"Added Custom",{"Attribute", "Value"})
in
    #"Removed Columns"

vhenrykmstf_0-1645164077517.png

vhenrykmstf_1-1645164369625.png


If the problem is still not resolved, please provide detailed error information and let me know immediately. Looking forward to your reply.


Best Regards,
Henry


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

3 REPLIES 3
v-henryk-mstf
Community Support
Community Support

Hi @guenfood ,

 

Based on your description, I think you can convert that table in power query first and then merge the two columns. I did the test with the following reference:

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("hY29CsMwDIRfRXgO9Ic+QUuHTh0zhAzGFqmJLQXJpj9PXxMouEs7iAPd3XfDYPpAnu9qOrM7bLb7qsdYENQJIjXfj544LREzejN2gzk/HMbGTdYJg+biZmCCaAu5219Kz+K/ICFCQpkQUISlsaDehWARngRV1/a15Mg8NyliwBWizzovTOFlc2D6BRrf", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Service = _t, Date = _t, Problem = _t, #"Start Date" = _t, #"End Date" = _t, Status = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Service", type text}, {"Date", type text}, {"Problem", type text}, {"Start Date", type text}, {"End Date", type text}, {"Status", type text}}),
    #"Unpivoted Columns" = Table.UnpivotOtherColumns(#"Changed Type", {}, "Attribute", "Value"),
    #"Added Custom" = Table.AddColumn(#"Unpivoted Columns", "list_", each [Attribute] & ":" & [Value]),
    #"Removed Columns" = Table.RemoveColumns(#"Added Custom",{"Attribute", "Value"})
in
    #"Removed Columns"

vhenrykmstf_0-1645164077517.png

vhenrykmstf_1-1645164369625.png


If the problem is still not resolved, please provide detailed error information and let me know immediately. Looking forward to your reply.


Best Regards,
Henry


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

guenfood
New Member

Thanks for your answer.

I create the index column but i don't succeed to achieve the display I want.

Image1.png

amitchandak
Super User
Super User

@guenfood , add unique ID for each row using Index column in Power Query

Then you can add  Index on Row and all other values and you can take min max. Then enable show on row 

 

https://stackoverflow.com/questions/45715963/creating-an-index-column-for-power-bi

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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.

Top Solution Authors
Top Kudoed Authors