SOLVED
search & remove value
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
yeruvab
7 - Meteor
‎05-29-2024
08:04 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
how to remove a value which is equal to same value in other column?
example: col1 has ABC
col2 has ABC,DGH,HYG
so output should be DGH,HYG
Thank you!
Solved! Go to Solution.
Labels:
- Labels:
- Fuzzy Match
5 REPLIES 5
Deano478
12 - Quasar
‎05-29-2024
08:46 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
@yeruvab for this specific use case above I tested and you can use the formula:
REGEX_Replace([Col 2], "\b" + [Col 1] + "\b,?", "")
‎05-29-2024
09:26 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
its giving the same values which is in col2
Deano478
12 - Quasar
‎05-29-2024
09:32 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
‎05-29-2024
09:46 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Yes!! works like charm!! Thank you
Raj
16 - Nebula
‎05-30-2024
09:23 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
@yeruvabPlease accept @Deano478's solution if it resolves the issue. This will assist others and help address pending challenges.
Regards,
Raj
