I need to create a function as follows:
If in range C:1-C:20, if the text matches one of the four options below (Think, Explore, Build, Release), then add the corresponding percentage. If "Think" appears twice, then add 15%+15%.
I tried to use the following formula, but if "think", "explore", "build", or "release" are there more than 1 time, it doesn't take that into consideration.
(IF(COUNTIF(C9:C20,"Explore"),"20%","0")+IF(COUNTIF(C9:C20,"Think"),"15%","0")+IF(COUNTIF(C9:C21,"Build"),"33%","0")+IF(COUNTIF(C9:C21,"Release"),"25%","0"))
If in range C:1-C:20, if the text matches one of the four options below (Think, Explore, Build, Release), then add the corresponding percentage. If "Think" appears twice, then add 15%+15%.
Think | 15.00% |
Explore | 20.00% |
Build | 33.00% |
Release | 25.00% |
I tried to use the following formula, but if "think", "explore", "build", or "release" are there more than 1 time, it doesn't take that into consideration.
(IF(COUNTIF(C9:C20,"Explore"),"20%","0")+IF(COUNTIF(C9:C20,"Think"),"15%","0")+IF(COUNTIF(C9:C21,"Build"),"33%","0")+IF(COUNTIF(C9:C21,"Release"),"25%","0"))