Hi
Unfortunately I have few rows with three columns like below :
Column A Column B Column C
A, B, C True False
D, A, B False True
... etc
From Column A i want to split based on delimiter ","
Final Output like to be as follow :
Column A Column B Column C
A True False
B True False
C True False
D False True
A False True
B False True
Is this possible. Example file attached.
Unfortunately I have few rows with three columns like below :
Column A Column B Column C
A, B, C True False
D, A, B False True
... etc
From Column A i want to split based on delimiter ","
Final Output like to be as follow :
Column A Column B Column C
A True False
B True False
C True False
D False True
A False True
B False True
Is this possible. Example file attached.