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.
I have a table currently that I want to create a unique row for an ID for with the columns where values are not null, have that date. See table below (current table) and then see what I am trying to create (future table).
REF_ID | IA Date | SDO Date |
72548 | 1/23/2023 | null |
72548 | null | 1/24/2023 |
71657 | 2/1/2023 | null |
71657 | null | 2/5/2023 |
76546 | 12/23/2022 | null |
76546 | null | 1/8/2023 |
75432 | 2/4/2023 | null |
75432 | null | 2/4/2023 |
FUTURE TABLE:
REF_ID | IA Date | SDO Date |
72548 | 1/23/2023 | 1/24/2023 |
71657 | 2/1/2023 | 2/5/2023 |
76546 | 12/23/2022 | 1/8/2023 |
75432 | 2/4/2023 | 2/4/2023 |
hi @LaurenTSloa
you can plot a table visual with the mentioned three columns directly and choose latest for both data columns, like:
or you create a calculated table with:
tbl2 =
ADDCOLUMNS(
VALUES(tbl[REF_ID]),
"IA Date", CALCULATE(MAX(tbl[IA Date])),
"SDO Date", CALCULATE(MAX(tbl[SDO Date]))
)
it worked like:
Create a summary table...
SummaryTable = SUMMARIZE(TableName,REF_IDIA,"Date",MAX([Date]),"SDO Date",MAX([SDO Date]))
User | Count |
---|---|
22 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
26 | |
13 | |
11 | |
9 | |
6 |