SOLVED
Field Values update
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
jeetamar11
7 - Meteor
‎04-19-2024
08:21 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
How can i change the values in field 2 based on a specific value in field 1. All other need to remain same in field 2.
Like if 'Country' column has value Japan then Column 'Status' will have value fail otherwise whatever is in Column status remains.
Following is not working:
if [Country]= 'Japan' then [Status]= 'Fail' else [Status] endif
Solved! Go to Solution.
Labels:
- Labels:
- Custom Tools
- Developer
2 REPLIES 2
18 - Pollux
‎04-19-2024
08:24 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
This should work - just select the [Status] column in the Formula tool and put:
if [Country]= 'Japan' then 'Fail' else [Status] endif
‎04-19-2024
08:45 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thank you for quick response, Alex.
It worked like wonder!😀
