I have table containing information about plots of land, each having an alphanumeric ID e.g. 2a.
One of the columns decribes the reason the plot is required for the project. This may be a single reason or a few (in the data I’m looking there are no more than 3 but there could be more). Multiple reason would be written as a sentence, not a delimited list, e.g.
“THIS, THAT and THE OTHER”
Based on the number of substrings (in the example there are 3) I need to make a new row in a new table. For each row the PLOT ID would be modified like so
2a(i) THIS
2a(ii) THAT
2a(iii) THE OTHER
All other fields (there are <20) need to copied
Is there any way I can do this with queries or am I looking at coding some recordset?