What about something like this?
IF(SEARCH("COE", {requesters}), "COE")
What about something like this?
IF(SEARCH("COE", {requesters}), "COE")
It works! Thank you very much!!!
And just 2 more questions (because I really have a lot of trouble with the formula:
- How does it looks like if I have 2 different columns of requesters?
- How does it looks like, if on the top of that, instead of writing “COE” on my column, I want to write the number of "COE"s detected on my 2 requesters columns?
Thank you VERY much!
It works! Thank you very much!!!
And just 2 more questions (because I really have a lot of trouble with the formula:
- How does it looks like if I have 2 different columns of requesters?
- How does it looks like, if on the top of that, instead of writing “COE” on my column, I want to write the number of "COE"s detected on my 2 requesters columns?
Thank you VERY much!
Well, those formulas would be much more complicated.
This formula will tell you the number of "COE"s in a field.
(
LEN({requesters})
-
LEN(
SUBSTITUTE(
{requesters},
"COE",
""
)
)
)
/ 3
If you have multiple fields, you can have an even more complicated formula. Here I have collapsed the above formula to save space. You would need to edit the name of requesters2
to match your actual field value.
((LEN({requesters}) - LEN(SUBSTITUTE({requesters},"COE","")))/3)
+
((LEN({requesters2}) - LEN(SUBSTITUTE({requesters2},"COE","")))/3)
Well, those formulas would be much more complicated.
This formula will tell you the number of "COE"s in a field.
(
LEN({requesters})
-
LEN(
SUBSTITUTE(
{requesters},
"COE",
""
)
)
)
/ 3
If you have multiple fields, you can have an even more complicated formula. Here I have collapsed the above formula to save space. You would need to edit the name of requesters2
to match your actual field value.
((LEN({requesters}) - LEN(SUBSTITUTE({requesters},"COE","")))/3)
+
((LEN({requesters2}) - LEN(SUBSTITUTE({requesters2},"COE","")))/3)
It works!! You’re the best, thank you very much!!