I am creating a calculated value that sets a delivery status to "Late" for some condition ONLY IF the state is not resolved.
How can I check if the work item is resolved or not using javascript? Please help
if (dueDate < today && <resolution != true> )
DeliveryStatus = "Late";
Comments
Georges Oneissy
Jan 30 '17, 8:39 a.m.Something like