SOLVED
If field1 contains 'highest peak' then take the words behind highest peak
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
terrellchong
8 - Asteroid
‎05-10-2020
07:41 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
This file is from challenge file. I found myself stuck at this. Please advise.
What should I type in the L part?
IF Contains('Highest peak', [Field1]) THEN L ELSE f ENDIF
Solved! Go to Solution.
Labels:
- Labels:
- Help
1 REPLY 1
15 - Aurora
‎05-11-2020
01:23 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi @terrellchong,
You could use the Replace function:
IF Contains([Field1], 'Highest peak: ')
THEN Replace([Field1], 'Highest peak: ', '')
ELSE [Field1]
ENDIF
If this solves your issue please mark the answer as correct, if not let me know!
Regards,
Jonathan
