I am trying to come up with a method to automatically calculate the first time a entry was made for a particular account, and the last time the entry was made for that same account. I have a example of what I want to achieve below:
I have a data set similar to this which has multiple accounts and multiple hour entrees for each account on different dates. What I want to do is to use alteryx and show me the first time a hours entry was made for account A was on 10/10/2015 and the last time it was made was on 10/16/2015. Same thing for B and C as well.
ACCOUNT | DATE | HOURS |
A | 10/10/2015 | 1 |
B | 10/12/2015 | 2 |
C | 10/10/2015 | 3 |
A | 10/15/2015 | 4 |
A | 10/15/2015 | 1 |
A | 10/16/2015 | 1 |
B | 10/20/2015 | 1 |
B | 10/21/2015 | 5 |
C | 10/30/2015 | 6 |
Is this possible in alteryx? Any help would be awesome!
Thank you