Hello,
I have a transaction list with month, employee, role and value like this :
Month | Employee | Role | Value |
oct-23 | 1000 | RA | 12 |
nov-23 | 1000 | RA | 23 |
dec-23 | 1000 | RA | 12 |
oct-23 | 1001 | RB | 34 |
nov-23 | 1001 | RB | 32 |
dec-23 | 1001 | RB | 21 |
oct-23 | 1002 | RA | 45 |
nov-23 | 1002 | RA | 67 |
dec-23 | 1002 | RB | 54 |
oct-23 | 1003 | RB | 32 |
Each column (whitout value) is connected to a dimension. I would like to have the max of a value by role but I would like to can change the month.
Ex : If I select no month in the table(or all), I would like to see :
RA | 67 |
RB | 54 |
And if I select nov-23 :
RA | 67 |
RB | 32 |
Same things if I select oct-23 and nov-23 :
RA | 67 |
RB | 54 |
I am newbiee in Pigment and I don’t know how to do this with functions. At the end I would like to let the user choose one or many months and one or many employees and see the max value in one month by role.
Thank you in advance,