This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hi Group,
I am new user here, i want some help in power bi where i am posting the table and output which i want.
Here days count is manual entry, if we can get from target date column similar result will be great. or you can use days count.
Thanks in Advance
| Project | Project 2 | Target Date | Days Count |
| KB | Feat 1 | 11-06-2023 | 30 |
| KB | Feat 2 | 12-07-2023 | 60 |
| KB | Feat 3 | 13-06-2023 | 30 |
| KB | Feat 4 | 14-07-2023 | 60 |
| KB | Feat 5 | 15-09-2023 | 180 |
| APPMMM | Feat 1 | 11-06-2023 | 30 |
| APPMMM | Feat 2 | 12-07-2023 | 60 |
| APPMMM | Feat 3 | 13-06-2023 | 30 |
| APPMMM | Feat 4 | 14-07-2023 | 60 |
| APPMMM | Feat 5 | 15-09-2023 | 180 |
| Integration | Feat 1 | 11-06-2023 | 30 |
| Integration | Feat 2 | 12-07-2023 | 60 |
| Integration | Feat 3 | 13-06-2023 | 30 |
| Integration | Feat 4 | 14-07-2023 | 60 |
| Integration | Feat 5 | 15-09-2023 | 180 |
Output
| Project | 30 | 60 | 90 | 180 |
| KB | Feat 1, Feat 3 | Feat 2, Feat 4 | Feat 5 | |
| APPMMM | Feat 1, Feat 3 | Feat 2, Feat 4 | Feat 5 | |
| Integration | Feat 1, Feat 3 | Feat 2, Feat 4 | Feat 5 |
Solved! Go to Solution.
Hi @kinitundi ,
You can create a measure as below to get it, please find the details in the attachment.
Measure = CONCATENATEX ( VALUES ( 'Table'[Project 2] ), 'Table'[Project 2], "," )
Best Regards
Hi,
Just in case you want a Power Query solution, then this solution works
let
Source = Excel.CurrentWorkbook(){[Name="Data"]}[Content],
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Project", type text}, {"Project 2", type text}, {"Target Date", type date}, {"Days Count", Int64.Type}}),
#"Grouped Rows" = Table.Group(#"Changed Type", {"Project", "Days Count"}, {{"Projects", each Text.Combine([Project 2],",")}}),
#"Pivoted Column" = Table.Pivot(Table.TransformColumnTypes(#"Grouped Rows", {{"Days Count", type text}}, "en-IN"), List.Distinct(Table.TransformColumnTypes(#"Grouped Rows", {{"Days Count", type text}}, "en-IN")[#"Days Count"]), "Days Count", "Projects")
in
#"Pivoted Column"
Hope this helps.
Hi @kinitundi ,
Whether your problem has been resolved? If yes, could you please mark the helpful post as Answered? It will help the others in the community find the solution easily if they face the same problem as yours. Thank you.
Best Regards
Thank you very much for your reply. it worked
Hi,
Just in case you want a Power Query solution, then this solution works
let
Source = Excel.CurrentWorkbook(){[Name="Data"]}[Content],
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Project", type text}, {"Project 2", type text}, {"Target Date", type date}, {"Days Count", Int64.Type}}),
#"Grouped Rows" = Table.Group(#"Changed Type", {"Project", "Days Count"}, {{"Projects", each Text.Combine([Project 2],",")}}),
#"Pivoted Column" = Table.Pivot(Table.TransformColumnTypes(#"Grouped Rows", {{"Days Count", type text}}, "en-IN"), List.Distinct(Table.TransformColumnTypes(#"Grouped Rows", {{"Days Count", type text}}, "en-IN")[#"Days Count"]), "Days Count", "Projects")
in
#"Pivoted Column"
Hope this helps.
Thank you Ashish
You are welcome.
Hi @kinitundi ,
You can create a measure as below to get it, please find the details in the attachment.
Measure = CONCATENATEX ( VALUES ( 'Table'[Project 2] ), 'Table'[Project 2], "," )
Best Regards
Thank you very much
Hi @kinitundi ,
Whether your problem has been resolved? If yes, could you please mark the helpful post as Answered? It will help the others in the community find the solution easily if they face the same problem as yours. Thank you.
Best Regards
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 30 | |
| 24 | |
| 23 | |
| 17 | |
| 15 |
| User | Count |
|---|---|
| 63 | |
| 36 | |
| 30 | |
| 22 | |
| 22 |