Hello,
How can I splits Days column into 5 different columns as below
Thank You
Days | Mon | Tue | Wed | Thr | Fri |
M | M | ||||
MT | M | T | |||
MTW | M | T | W | ||
MTWR | M | T | W | R | |
MTWRF | M | T | W | R | F |
Solved! Go to Solution.
@ankit0412
How about we directly split the string to 5 columns.
@ankit0412 another way would be using the formula tool and if contains e.g
IIF(Contains([Days], "M"), "M", null())