Forum Discussion
john john
Sep 01, 2022Steel Contributor
Calcualted column is returning "#Name?"
I have the following formula for a single line of text Calculated column named ShowInApp:- IF(OR(Status="Inactive",ISBLANK(Status)),"Hide",IF(FIND("Pending",[Category]),"Hide",IF(FIND("Monitorin...
ganeshsanap
Sep 01, 2022MVP
john john Try using this formula in case you want to use "contain" conditions for Category column instead of "equal to":
=IF(
OR(
[Status] = "Inactive",
ISBLANK([Status])
),
"Hide",
IF(
NOT(ISERROR(FIND("Pending", [Category]))),
"Hide",
IF(
NOT(ISERROR(FIND("Monitoring And Evaluation Plan", [Category]))), "Hide", "Show"
)
)
)
Documentation: Examples of common formulas in lists
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.