Calendar View to include assigned to

KHannon
✭✭✭
I would like for my calendar view from a report to include the task name and who it is assigned to, is this possible?
Best Answer
-
The calendar view displays the Primary Column. You would need to move whatever data is already in this column to a different column then use a formula to join the task name and assigned to together.
=[Task Name]@row + " - " + [Assigned To]@row
Answers
-
The calendar view displays the Primary Column. You would need to move whatever data is already in this column to a different column then use a formula to join the task name and assigned to together.
=[Task Name]@row + " - " + [Assigned To]@row
-
Thank you - that helps to understand and possible solution.
-