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
Lookup value (with multiple results) from same table and with multiple filters
08-06-2023
07:57 PM
Hello, I have the following issue:
Context:
I currently have a report that tracks an activity log. 1 row = 1 activity. The row will tell us what is the activity (Activity ID (From)) and what is the next activity (Activity ID (To)) it triggers. Each row has a date-time (Activity Date) of when the Activity ID (From) happened.
Objective:
For each row, I'd like to find out what is the Activity date for when Activity ID (from) = preceding Activity ID (to)
I've tried the following formula
T0 = Calculate(firstNONBLANK(Reporting[ActivityDate], 1), Filter(Reporting, Reporting[ActivityToId] = EARLIER(Reporting[ActivityId])))
but it's only retrieving the first ever date of that activity instead of the closest preceding one. I would also like to add a filter so that it only looks up dates with the same Request ID (column A).
Thank you in advance!
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2023
09:00 PM
Managed to get an answer from further researching
T0 =
VAR _last_date = Reporting[ActivityDate]
RETURN
CALCULATE (
MAX ( Reporting[ActivityDate] ) ,
ALLEXCEPT ( Reporting , Reporting[ReqIDId] ) ,
Reporting[ActivityDate] < _last_date, Reporting[ActivityToId] = EARLIER(Reporting[ActivityId]))
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2023
08:15 PM
Hi, @mwu1
You have a great approach, thanks for sharing. You can accept your answer as a solution to help more people with similar problems.
Best Regards

Helpful resources
Recommendations
Subject | Author | Posted | |
---|---|---|---|
02-04-2024 06:40 AM | |||
11-23-2023 11:42 AM | |||
11-06-2023 04:08 AM | |||
10-04-2023 02:32 PM | |||
03-06-2024 03:24 AM |