
Contributor III
2021-03-09
08:31 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.
I thank you,
Greetings
762 Views
1 Reply
2021-03-10
01:13 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
