Hi All,
I'm trying to create a calculated field on a document form that displays the following text when the number present falls into one of the following 3 ranges:
< 0 = "Late"
=0 = "On Time"
>0 = "Early"
The field will pull the numerical data from another custom field on the form.
Solved! Go to Solution.
Views
Replies
Total Likes
similar concept i did for a client used the following formula...
similar concept i did for a client used the following formula...
Thanks Jarrett! Is your formula tied to a task/project status? How would I go about tying it to a custom field?
Views
Replies
Total Likes
you would replace the status in the { } with the custom field {DE:Custom Field Name}
IF({DE:Custom Field Name} < 0,"Late",IF({DE: Custom Field Name} = 0, "On Time","Early"))
Thanks for all your help with this Graham! I did have one last question regarding this formula. If you were trying to capture scores that fall between two variables, how would you capture that in this formula? >1 but <4 ?
Views
Replies
Total Likes