Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all
İ tried to combine 4 columns into one column with this script
subfield(DS_DELAY_SUB_CODE_1 & ';' & DS_DELAY_SUB_CODE_2 & ';' & DS_DELAY_SUB_CODE_3 & ';' & DS_DELAY_SUB_CODE_4, ';') as DS_DELAY_SUB_CODE
But i want to ignore '?' character in this subfields
how can i do this
thnaks
purgechar(
subfield(DS_DELAY_SUB_CODE_1 & ';' & DS_DELAY_SUB_CODE_2 & ';' & DS_DELAY_SUB_CODE_3 & ';' & DS_DELAY_SUB_CODE_4, ';')
,'?')
purgechar(
subfield(DS_DELAY_SUB_CODE_1 & ';' & DS_DELAY_SUB_CODE_2 & ';' & DS_DELAY_SUB_CODE_3 & ';' & DS_DELAY_SUB_CODE_4, ';')
,'?')
will i take all sub_codes without '?'
i think so
try it
The purgechar will remove all ? from the string subfield(DS_DELAY_SUB_CODE_1 & ';' & DS_DELAY_SUB_CODE_2 & ';' & DS_DELAY_SUB_CODE_3 & ';' & DS_DELAY_SUB_CODE_4, ';')