Solution to seperate column with 3-4 words seperated by comma into 4 columns:
Sample Field Record set
[CGY, Norad, Tech, Jones]
Left([Entity / Department / Function / Unit],InStr([Entity / Department / Function / Unit],", ")-1) AS Entity,
Left([String],InStr([String],", ")-1) AS Department...