Hi all,
I'm trying to create a textbox that says how many tasks are due/overdue. The data is stored in sharepoint, with the due date as a date and the completion status as a choice list. Right now it works if I only use the date to determine the number of tasks. However I need to only include assigned tasks so I need to add a second conditional to the formula. Right now I have it set up like so:
CountIf('Task Management',Value(Text(Due_Date, "[$-en-US]yyyymmdd")) < Value(Text(Today(), "[$-en-US]yyyymmdd")) && Status = First(Choices('Task Management'.Status)))
It stops working once I add the "&&" and everything past it. Does anyone have any advice?
Thanks,