Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi ,
I am having Field As Full Name, in that name is displaying as 'Judy Crawford Crawford', In need to Remove the Crawford Name in the Field Value
Expected Result:
Full name:
Judy Crawford
If the word count is different and you want only first two words then try this.
Load SubField(Data,' ',1) &' '& SubField(Data,' ',2) as Newfield inline [
Data
Judy Crawford Crawford Crawford
];
Regards,
Kaushik Solanki
Try this,
=Subfield(FullName,' ',1) &' '&Subfield(FullName,' ',2)
Regards,
Pratik
Try this.
LOad Data,If(SubField(Data,' ',2) = SubField(Data,' ',3),SubField(Data,' ',1) &' '&SubField(Data,' ',2),Data) as NewField inline [
Data
Judy Crawford Crawford
ABC PQR
];
Regards,
Kaushik Solanki
Left('Judy Crawford Crawford',Index('Judy Crawford Crawford',' ',-1))
Regards,
Antonio
It creating One more Duplicate word in Field Value
example ?
Judy Crawford Crawford Crawford
it is within the Field How can i do this
Can you share the expression that you have written ?
If the word count is different and you want only first two words then try this.
Load SubField(Data,' ',1) &' '& SubField(Data,' ',2) as Newfield inline [
Data
Judy Crawford Crawford Crawford
];
Regards,
Kaushik Solanki