Hello, I need help on extract some text in column A using formula into three column. More rows will be added into column A, so text to column is not valid in my case.
Column A consists of request type (ad hoc or recurring), complexity (high, medium, low) and priority. They are filled up like below, in alphabetical order
Ad Hoc, Low complexity
Medium complexity, Recurring
Medium complexity, Priority, Recurring
High complexity, Priority, Recurring
I want to extract the information in column A in to the 3 columns, B "Complexity", C "Request Type", D "Priority":
eg. from above column A
first row: B is Low complexity, C is Ad Hoc, D is empty
second row: B is Medium complexity, C is Recurring, D is empty
third row: B is Medium complexity, C is Recurring, D is Priority
I tried to use nested if, but it is not working,
=IF(FIND("Low",A1),"Low complexity (orange)",IF(FIND("Medium",A1),"Medium Complexity (orange)"))
Appreciate advise on how can I extract the information into the 3 columns, thank you
Bookmarks