I have two input in my workflow, In one Input I have Tech Name, Period Start Date, Period End Date. This is the fortnightly dates, and a rate column, that tells that during that period what was the hourly rate of the technician.
In another table I have Actual date of completion of job, and job number with the name of tech
What I want is, join the two tables, such that In a new column I can get the Rate from table one, in a new column.
When I join the two, without applying custom condition, due to size of data, Alteryx give me error.
In SQL we can simple write a where condition on date like [actual date] >= [period start date] AND [actual date] <= [period end date]
Can we do something like that In Alteryx?