We're giving away 30 tickets for FREE! Share your story, your vision, or your hustle and tell us why YOU deserve a ticket.
Apply nowWin a FREE 3 Day Ticket to FabCon Vienna. Apply now
I have a table with multiple records per project that I want to combine using concatenatex and keep the last date of the relevant records. Here's an example of the table
[ID] [Record Date] [Status Notes]
123 22-FEB-2022 SOW finalized.
123 17-MAR-2022 Hardware and software installed.
123 25-MAY-2022 Fit gap analysis complete.
747 13-APR-2022 User acceptance testing beginning this week.
747 14-JUN-2022 UAT completed.
I'm looking for this as the result in a new table or query:
[ID] [Record Date] [Status Notes]
123 25-MAY-2022 SOW finalized. Hardware and software installed. Fit gap analysis complete.
747 14-JUN-2022 User acceptance testing beginning this week. UAT completed.
Is this possible in Power BI with DAX? I can't get it to work.
Solved! Go to Solution.
You can create a new table like
Summary Table = SUMMARIZECOLUMNS( 'Table'[ID],
"Record Date", MAX('Table'[Record Date]),
"Status Notes", CONCATENATEX( 'Table', 'Table'[Status Notes], " ", 'Table'[Record Date], ASC)
)
You can create a new table like
Summary Table = SUMMARIZECOLUMNS( 'Table'[ID],
"Record Date", MAX('Table'[Record Date]),
"Status Notes", CONCATENATEX( 'Table', 'Table'[Status Notes], " ", 'Table'[Record Date], ASC)
)
User | Count |
---|---|
14 | |
12 | |
7 | |
7 | |
6 |
User | Count |
---|---|
28 | |
20 | |
14 | |
11 | |
5 |