Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a column called Name
ex:Name
Rai,Sam
where Sam is first name and Rai is last name
so I only want to display last name.How can I do that ?
Use subfield if comma is the delimiter -
Subfiled(Name,',',1) as Lastname
My bad
Hi,
You can split the field in the script
LOAD
NAME,
Subfield(NAME,','1) AS FirstName,
Subfield(NAME,',',2) AS LastName
,....
From Source;
Then in UI you can use LastName field as you want.
Try Subfield(name,','1) AS FirstName
subfield(name,',',1) as lastname.
use it may help
Thank you very much.