Hello,
I am having an issue with making an equivalent to the VLOOKUP approximate match in Alteryx.
Formula example: =VLOOKUP(B2,Calendar!A:C,3,TRUE)
B2 = Assigned Date = 8/14/2025
I need it to join the tables together so that I can return the check date of 8/29/2025 dynamically.
| Begins | Ends | Check Date | WK # |
| 7/12/2025 | 7/25/2025 | 08/01/25 | 31 |
| 7/26/2025 | 8/8/2025 | 08/15/25 | 33 |
| 8/9/2025 | 8/22/2025 | 08/29/25 | 35 |
| 8/23/2025 | 9/5/2025 | 09/12/25 | 37 |
I assume there is a formula I just can't wrap my head around it, and I don't know how to join the two data sets together without an exact match on the joins.