Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi Everyone,
I have a scenario where I would like to create a table which shows the comments against each Objective clubbed together by Date.
Table1 (Primary Table)
ID | Owner | Objective |
ID1 | ABC | Objective1 |
ID2 | XYZ | Objective2 |
Table2
Comments are made by multiple POCs and multiple times in a time which get captured in seperate rows
ID | POC | Date | Comments |
ID1 | Person1 | 8/7/2023 | RandonText1 |
ID2 | Person2 | 8/7/2023 | RandonText2 |
ID1 | Person 1 | 8/8/2023 | RandomText4 |
ID1 | Person3 | 8/7/2023 | RandonText3 |
I would like to create a table to have something like below:
ID | Owner | Objective | Date | Comments |
ID1 | ABC | Objective1 | 8/7/2023 | Person1 (8/7/2023): RandomText1
Person3 (8/7/203): RandomText3
|
ID2 | XYZ | Objective2 | 8/7/2023 | Person2 (8/7/2023): RandomText2 |
ID1 | ABC | Objective1 | 8/8/2023 | Person3 (8/8/2023): RandomText4 |
Any help would be greatly appreciated.
Thank you.
Solved! Go to Solution.
Have a look into the concatenatex function:
_Comments = IF(HASONEVALUE(primary[ID]), CONCATENATEX(comments,
comments[POC] & " (" & comments[Date] & ") " & comments[Comments],
UNICHAR(10)
))
Have a look into the concatenatex function:
_Comments = IF(HASONEVALUE(primary[ID]), CONCATENATEX(comments,
comments[POC] & " (" & comments[Date] & ") " & comments[Comments],
UNICHAR(10)
))
User | Count |
---|---|
75 | |
74 | |
44 | |
31 | |
27 |
User | Count |
---|---|
99 | |
89 | |
52 | |
48 | |
46 |