Hi all!
Below is a silly mockup of what I'm trying to achieve. I am trying to automate the Order column. First it should add the person's name to the Order column, then where there's an x in the animal columns, it should add the respective text from row 1 to the order column.
I'm familiar with the likes of this formula below, but then I need to automate this based on the x's, as there are many rows.
Any help would be greatly appreciated!
Below is a silly mockup of what I'm trying to achieve. I am trying to automate the Order column. First it should add the person's name to the Order column, then where there's an x in the animal columns, it should add the respective text from row 1 to the order column.
Example.xls | ||||||||
---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | |||
1 | Name | Dog | Cat | Cow | Horse | Order | ||
2 | James | x | x | James. Dog. Cow. | ||||
3 | Andrew | x | x | Andrew. Cat. Horse. | ||||
4 | Stephanie | x | x | x | x | Stephanie. Dog. Cat. Cow. Horse | ||
Sheet3 |
I'm familiar with the likes of this formula below, but then I need to automate this based on the x's, as there are many rows.
Excel Formula:
=A2&". "&B1&". "&D1&"."
Any help would be greatly appreciated!