Hi,
Is there any way I can check a file to see if a column exists and if it's not there, create it with a formula. If it is in the data set then move on to the next part?
For example, I want a table with first name, last name and full name, if Full name is not in there (as in the below table), then create a column that concatenate first and last name:
| ID | Firstname | Lastname |
| 1 | John | Adam |
| 2 | Megan | Brown |
| 3 | Jessie | Sitkoff |
If the Full name is in the data set and there's not separated columns for first and last name, then do text to column or something to get the two columns firstname and last name.
Thank you!