Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
subfield(upper(country),'\',3) as u ?
Hi,
Subfield() gives you data before Delimeter
For example
subfield(upper(country),'\',3)
in this case if Country = india\abc\China\xya
then return data before 3 delimeter \ i.e. it returns
China as your output
Regards
Hi,
Subfield() gives you data before Delimeter
For example
subfield(upper(country),'\',3)
in this case if Country = india\abc\China\xya
then return data before 3 delimeter \ i.e. it returns
China as your output
Regards
Hi it will return third position before \
Provide sample data.
Ex
=subfield(upper('Mohammed\Ashfaq\Ali'),'\',3)
will Return ALI
Regards
ASHFAQ
Hi,
this will return the third string delimited by '\' in your field country in upper case in a new field u.
Best regards
Stefan
If country field containts value like
Input Output
AA\BB\CC\DD CC
AA\BB\CC CC
AA\BB\RR\DD\EE RR
Hope this example will help.