I have a field called reasons that displays the various reasons separated by an underscore character like so:
Reasons
NoDate_Late_NoSignature
What I need to do is split the reasons like so:
Reason1 Reason2 Reason3
NoDate Late NoSignature
How can I achieve this? In the reasons column at present there may be anything from 1 to 9 reasons (separated by an underscore). The reason column comes from a database field but i want to split this field like i have shown.
Reasons
NoDate_Late_NoSignature
What I need to do is split the reasons like so:
Reason1 Reason2 Reason3
NoDate Late NoSignature
How can I achieve this? In the reasons column at present there may be anything from 1 to 9 reasons (separated by an underscore). The reason column comes from a database field but i want to split this field like i have shown.