I need to create an alteryx workflow that can identify dates that lay within a date range i give it.
Input 1 will be all of the dates I have and the corresponding account numbers that go with them. There can be multiple dates on a single account number.
Input 2 will be a static date and corresponding account number, there will be no duplicates here.
I need to find dates from Input 1 that lay between -7 and 120 days from Input 2
When I do this, I do a formula tool
DateTimeDiff([Input 1], [Input 2], "days")
and then a filter
[DateDifference] >= -7 AND [DateDifference] <= 120
Alteryx never returns the right dates. It gives me ones that lay outside of the specified range.