This site uses different types of cookies, including analytics and functional cookies (its own and from other sites). To change your cookie settings or find out more, click here. If you continue browsing our website, you accept these cookies.
Hey guys,
Feel like this should be simple but haven't been able to make it work for me. Have a single column of data:
Column A |
Title 1 |
data |
data2 |
data3 |
Title 2 |
data4 |
data5 |
Title 3 |
data 6 |
data 7 |
data 8 |
data 9 |
And I want to take the Title and insert as a second column beside each data, like so:
Column A | Column B |
Title 1 | Title 1 |
data | Title 1 |
data2 | Title 1 |
data3 | Title 1 |
Title 2 | Title 2 |
data4 | Title 2 |
data5 | Title 2 |
Title 3 | Title 3 |
data 6 | Title 3 |
data 7 | Title 3 |
data 8 | Title 3 |
data 9 | Title 3 |
Appreciate any help. Thanks.
Solved! Go to Solution.
Hey @Ciaran ,
Looks like a multi-row formula is what you're after, something like this should work:
IF
STartsWith([Col A],"Title") THEN [Col A]
ELSE [Row-1:New Field]
ENDIF
In the config make sure you're setting it as a string field!
Please remember to accept as a solution if this works!
Thanks Nick, that worked perfectly for me!