- 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
Three columns on one table, need to return the earliest
I have one table that is being used (Pro Staff Info)
I have three separate columns that include a date or an N/A.
Pro Staff Info
Columns:
Initial Cert Exp (there is a date in this column if they have this type of cert, N/A if they don't)
Conditional Cert Exp (there is a date in this column if they have this type of cert, N/A if they don't)
Continuing Cert Exp( there is a date in this column if they have this type of cert, N/A if they don't)
I need a way to compare these columns and return the earliest date of the 3 columns.
The staff can have more than one type of cert to expire.
Ex: Sally has an initial cert expiring 6/30/2025 and a conditional cert expiring 6/30/2026. I would need a column that just returns the earliest date (in this example 6/30/2025).
The purpose is for the admin assistants to know when someone is expiring and starting the process to recertify.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi @bradytb
Based on your needs, I have created the following table.
Then you can use the following dax to get the result you want:
Measure = VAR select_name = SELECTEDVALUE('Pro Staff Info'[Name])
RETURN
MINX(FILTER(ALL('Pro Staff Info'),'Pro Staff Info'[Name]=select_name && 'Pro Staff Info'[Date]<>BLANK()),'Pro Staff Info'[Date])
Result:
Best Regards,
Jayleny
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi @bradytb
Based on your needs, I have created the following table.
Then you can use the following dax to get the result you want:
Measure = VAR select_name = SELECTEDVALUE('Pro Staff Info'[Name])
RETURN
MINX(FILTER(ALL('Pro Staff Info'),'Pro Staff Info'[Name]=select_name && 'Pro Staff Info'[Date]<>BLANK()),'Pro Staff Info'[Date])
Result:
Best Regards,
Jayleny
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
10-06-2023 09:07 PM | |||
Anonymous
| 04-02-2024 06:27 AM | ||
08-05-2024 11:21 AM | |||
Anonymous
| 02-27-2024 10:39 AM | ||
08-20-2024 06:48 PM |
User | Count |
---|---|
14 | |
14 | |
11 | |
11 | |
8 |