Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dears,
how can i get the text after specific char like if i have :
ad,sj2
0,2
0,10
jak,kavin
and i need the just to retrieve only the char after the ',' i try the right but i cant apply it in all cases some time i did not get the right data
any idea about this .
Hi,
I would read that they only wants the first character after the comma or , char.
So something like
LEFT(SUBFIELD(FieldName,',',2),1) AS NewField
Mark