This site uses different types of cookies, including analytics and functional cookies (its own and from other sites). To change your cookie settings or find out more, click here. If you continue browsing our website, you accept these cookies.
The highly anticipated Alteryx Community tradition is back! We hope you'll join us!
Learn MoreHi does anyone know if its possible to match a list of 'available time' between two times, i.e 12:00 - 13:00 in separate Fields to a list of tasks that were completed elsewhere in another table to understand what we could have done.
so in Table 1 I have all tasks completed by individual - these tasks have a start time. - I then have another table which has all available time slots by Agent - what i then want to do is to effectively say this Agent was available so should have been delivered this task.
No idea where to start currently.
Each Agent could have multiple time slots where they are available on multiple dates.
Any help would be appreciated.
It isn't completely clear what you are asking. Are these tasks that "were completed elsewhere" not assigned to any of these individuals so the business was lost? You say "what i then want to do is to effectively say this Agent was available so should have been delivered this task". I'm not sure if this is a question of optimizing the tasks that have been assigned to agents to more evenly distribute workload, or if these tasks that came in at certain times weren't assigned to agents and therefore were lost.
That being said, you can absolutely use a combination of less than and greater than operators to compare date time fields.
IIF([Task Time] > [Agent Available Start Time] AND [Task Time] < [Agent Available EndTime], "Agent Available", "Agent Unavailable")
It looks like the picture did not attach properly. Would you mind editing the post and reattaching?