I’m sure I’m doing something wrong, but I can’t seem to figure out what. Can someone point me in the right direction? How can I trigger the checkbox to return “true” if the Keyword column in that row contains a certain string?
I have a checkbox column with a formula: thisRow.Keyword.Contains(“vs”) and the idea is to search the Keyword column of that row for the string “vs” and return true if the string is found.
I believe Contains() is meant to search through a list, so maybe the problem is that the Keyword column is a text value, not a list value? But if that’s the reason it’s not working, I don’t know what else to do.
I think here that the use of this formula would be more appropriate:
(“If(condition, ifTrue, ifFalse)”), which would give in your case if(Keyword=true, true(), False()). I could be wrong, but considering the time 4 am, I’m not sure of anything without having access to a copy of the document.
Contains searches an array for any matching items within it. What you’re looking for is ContainsText() , which searches a string for a matching substring and outputs true if the string contains matches.
I might also recommend using .lower() on the string before ContainsText() to force lowercase handling if you’re worried about capital letters interfering.