I am having trouble writing a formula that I believe has to be a nested statement, but I can't figure out how to get it right. If column A contains "In Process" then column B should read 20%. If column A contains "Prepped" then column B should read 50%. And, if column A contains "Complete" then column B should read 100%. My attempt to draft the formula does yield a %, however, it is concatenating the information, so that if column A reads Prepped, column B reads: 050%0. How should I change the formula below to yield only the % that reflects the current status?
Column A (Status) Column B (% Complete)
In Process 20%
Prepped 50%
Complete 100%
Current formula draft reads =IF(CONTAINS("In Process", [Account Status]:[Account Status]), "20%", "0") + (IF(CONTAINS("Prepped", [Account Status]:[Account Status]), "50%", "0") + (IF(CONTAINS("Complete", [Account Status]:[Account Status]), "100%", "0")))