- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Jul 28, 2023 08:38 AM
The status section has 15 statuses, but only these 2 can go green.
Solved! Go to Solution.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Jul 30, 2023 08:54 AM
Ooof... while I pretty broadly advise against the use of multiple select fields, here's a formula that does what you're looking for:
IF(
{Status},
IF(
OR(
REGEX_MATCH(
{Status},
'Complete'
),
REGEX_MATCH(
{Status},
'Billed'
)
),
"✔",
"❌"
),
"❌"
)
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Jul 28, 2023 01:00 PM - edited Jul 30, 2023 08:48 AM
IF(
OR(
{Status} = "Complete",
{Status} = "Billed"
),
"✔",
"❌"
)
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Jul 28, 2023 07:42 PM
or use the switch function
SWITCH({Status},
"Complete","done",
"Billed","done",
"x"
)
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Jul 30, 2023 08:13 AM
Since it has multiple options in status, I need to select COMPLETE when a driver completed the route and I will go Green
"✔"
And when I bill the route, I have to select BILLED option too, but when I use this formula, it comes back with an X becouse I selected 2 options, the Complete and Billed.
The task is to, when I multi-select Complete and Billed, it should be Green Check point. If there any other options, well X is fine.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Jul 30, 2023 08:54 AM
Ooof... while I pretty broadly advise against the use of multiple select fields, here's a formula that does what you're looking for:
IF(
{Status},
IF(
OR(
REGEX_MATCH(
{Status},
'Complete'
),
REGEX_MATCH(
{Status},
'Billed'
)
),
"✔",
"❌"
),
"❌"
)
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Jul 30, 2023 01:41 PM
Waw, works great. Thank you!!!! 💪