Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
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]))
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
17 | |
10 | |
10 | |
8 | |
6 |
User | Count |
---|---|
18 | |
16 | |
15 | |
12 | |
10 |