Hi,
Based on Last Modified Time of particular Application I want to display unique application number.
Mention two table, 1 table contains multiple time frames for each application
Table 2 is expected output which I display last modified time along with Application number.
Kindly suggest me which formula I want to use in this case.
Input:
| Modified Time | Application |
| 10:01 | 1001 |
| 10:02 | 1002 |
| 10:03 | 1001 |
| 10:04 | 1003 |
| 10:05 | 1004 |
| 10:06 | 1001 |
| 10:07 | 1002 |
| 10:08 | 1005 |
| 10:09 | 1006 |
| 10:10 | 1007 |
| 10:11 | 1001 |
| 10:12 | 1003 |
Expected output should be like this:
| Last Modified Time | Application |
| 10:11 | 1001 |
| 10:07 | 1002 |
| 10:12 | 1003 |
| 10:05 | 1004 |
| 10:08 | 1005 |
| 10:09 | 1006 |
| 10:10 | 1007 |