Skip to main content
Announcements
July 15, NEW Customer Portal: Initial launch will improve how you submit Support Cases. IMPORTANT DETAILS
cancel
Showing results for 
Search instead for 
Did you mean: 
ClaudiaS220388
Contributor III
Contributor III

Renombrar un grupo de registros

Hello everyone,

Please your help to be able to group some records that contains a column called: Group

Which contains several records and I want to group 3 records of this column and rename them in a single example:

Original records:
ITS T
THAT C
ST
I want to rename this group as ST1

but in the same way I want the other records to be able to use them with their original names.

ClaudiaS220388_1-1615339866337.png

I thank you,
Greetings

 

Labels (1)
1 Reply
Anil_Babu_Samineni

Try like

Load FieldName, If(Match(FieldName, 'Value1', 'Value2', ...), 'GroupMatched', FieldName) as FiledName1 From ..;

Or

Where Match(FieldName, 'Value1', 'Value2', ...) // this will give result when you want to load only these values

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful