SOLVED
mapping corresponding records between multiple timestamps
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
rakhikk
5 - Atom
‎02-11-2025
05:46 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi,
I have below different time ranges and i have to map data to each of the time range. The time range would be for each order number , time range would be time between 2 & 1, 3&2, 4&3 and so on..I want to create time range buckets and map the same against different data set with time stamps (based on above time ranges) For example - A record with time stamp 12:00:30 should be mapped against time range 11:23:02 to 13:22:34.
Appreciate help..
Order number | Time | record number |
12345 | 11:23:02 | 1 |
12345 | 13:22:34 | 2 |
12345 | 14:03:06 | 3 |
12345 | 15:03:06 | 4 |
45678 | 10:23:02 | 1 |
45678 | 12:23:02 | 2 |
45678 | 14:23:06 | 3 |
Solved! Go to Solution.
Labels:
- Labels:
- Common Use Cases
- Developer
3 REPLIES 3
18 - Pollux
‎02-11-2025
05:54 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Use a Multi row Formula to create those ranges - something like [Row+1:Time] as a new column should do the trick. Make sure you group by Order Number though as well!
21 - Polaris
a month ago
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
a month ago
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi, Thank you for the solution. It worked!!!
