Forum Discussion
AllanBerces
2 years agoPost Prodigy
Project Progress Status
Hi Experts, Good day Can anyone pls need assistance on how can i change the Project Completed column status in new column. If the Project Completed is 100 = Completed if the Project Completed i...
- 2 years ago
You can create a custom column using the SWITCH function as follows:
Status Custom Column = SWITCH( TRUE(), [Project Completed] = 100, "Completed", [Project Completed] > 0 && [Project Completed] < 100, "In-Progress", ISBLANK([Project Completed]) || [Project Completed] = 0, "Not started" )
=-=-=-=-=-
If you find this insightful, please provide a Kudo and accept this as a solution so that other members may find it easier.
foodd
2 years agoCommunity Champion
You can create a custom column using the SWITCH function as follows:
Status Custom Column = SWITCH(
TRUE(),
[Project Completed] = 100, "Completed",
[Project Completed] > 0 && [Project Completed] < 100, "In-Progress",
ISBLANK([Project Completed]) || [Project Completed] = 0, "Not started"
)
=-=-=-=-=-
If you find this insightful, please provide a Kudo and accept this as a solution so that other members may find it easier.
- AllanBerces2 years agoPost Prodigy
Hi foodd Thank you very much, working perfectly
- foodd2 years agoCommunity Champion
Your welcome.
If the solution provided is of interest, consider adding Kudos.