Hi
Can you please suggest me with a formula that carries out the following function for me:
IF %column = 100%, "Complete"
IF%column = >25% and <=99%, "In Progress"
IF %column = <25% "At Risk"
IF %column = blank, i.e. no value then "Postponed"
I think you have too many close parentheses ")".
=IF([% Complete]3 = 1, "Complete", IF(AND([% Complete]3 < 0.25, [% Complete]3 > 0), "At Risk", IF(AND([% Complete]3 > 0.25, [% Complete]3 <= 99), "In Progress", IF([% Complete]3 = 0, "Postponed"))))
Let me know if this one works!
Hello there Amanda, replace "PercentageComplete1" with whatever your column's name is (%column you referenced above). Let me know if this works, and if it does, please mark this as "Answered" below.
=IF(PercentageComplete1 = 1,"Complete", IF(AND(PercentageComplete1 < 0.25, PercentageComplete1 > 0), "At Risk", IF(AND(PercentageComplete1 > 0.25, PercentageComplete1 <= 99), "In Progress", IF(PercentageComplete1 = "","Postponed"))))
Thanks,
Brett Wyrick 🧔
@Brett Wyrick Hi! It didn't really work. I get an incorrect argument message as soon as I enter the formula formula. Can you see what's wrong?
P.S. I have entered %complete = 0 in the last part of the formula because I would like the last part to check if percentage column = 0 then enter postponed.
=IF([% Complete]3 = 1, "Complete", IF(AND([% Complete]3 < 0.25, [% Complete]3 > 0, "At Risk", IF(AND([% Complete]3 > 0.25, [% Complete]3 <= 99), "In Progress", IF([% Complete]3 = 0, "Postponed")))))
A quick response will be greatly appreciated!
ref must be one of: categoryID, siteSectionID, category, category/categoryID, category/name, category/description, category/url, category/allowedDiscussionTypes, locale, siteSection, siteSection/basePath, siteSection/contentLocale, siteSection/sectionGroup, siteSection/sectionID, siteSection/name, siteSection/description, siteSection/apps, siteSection/attributes, layoutViewType, discussionID, commentID, page, sort, discussion, discussion/name, tags, breadcrumbs, discussionApiParams, serverDraftID, serverDraft.