I have inputted a number of excel files through a batch macro. They all have slightly different schemas (field names) so the macro is set to union the results on output.
This then ends up with multiple different fields for what is in reality the same field (eg Name, Names, FullName, Fullname) where lots of the rows are blank depending on what was in the source data.
Is there a quick and easy way to harmonise these to the same column? My natural instinct would be to write a formula like the below:
If Name is not null, then Name, elseif Names is not null then Names elseif FullName is not null then FullName etc.
Given there are approximately 10 “real fields” across 30 variations I wondered if there was a best practice to tackle this and align all the data to a single column easier than nested ElseIfs
Jay