50
Points
Questions
0
Answers
2
-
On the role page you have “Employee Restriction” Put this one to “Own and Subordinate”. This should respect the supervisor that has been tagged on their employee cards
- 806 views
- 1 answers
- 0 votes
-
Yes!,
Can be accomplished with formulas (Use sum on the formulas and group per customer)
For the “last 30, 90 etc” use:
case when {trandate} >= ({today}-X) then 1 else 0 end (Wrap in Sum)
Where X is your Amount of days.
For the MTD, YTD You can Use the Extract function.
Formula examples:
case when EXTRACT(Year from {trandate}) = EXTRACT(Year from {today}) then 1 else 0 end // THIS YEAR
case when EXTRACT(Year from {trandate}) = (EXTRACT(Year from {today})-1) then 1 else 0 end // LAST YEAR
Maybe someone has a simpler solution, this should work though
This answer accepted by Ahmed. on April 27, 2020 Earned 15 points.
- 2142 views
- 1 answers
- 0 votes