Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Create Table from multiple rows
03-21-2023
11:27 AM
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 |
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2023
08:25 AM
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:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2023
11:32 AM
Create a summary table...
SummaryTable = SUMMARIZE(TableName,REF_IDIA,"Date",MAX([Date]),"SDO Date",MAX([SDO Date]))

Helpful resources
Recommendations
Subject | Author | Posted | |
---|---|---|---|
03-03-2024 02:45 AM | |||
01-09-2024 03:05 PM | |||
03-03-2024 01:42 AM | |||
03-04-2024 09:57 AM | |||
03-25-2024 08:24 PM |