Skip to main content

Case Sensitive Contains Filter in Grid View

  • September 22, 2022
  • 4 replies
  • 0 views

Hi all!

I’m wondering if it’s possible to set up a case sensitive Contains Filter on a single line text field in a Grid View. So if the Contains filter value was ‘Abc’, a row with the field containing ‘Abc123’ would be shown but not rows containing ‘ABC456’ or abc789’?

Thanks!
Steve

4 replies

TheTimeSavingCo
Forum|alt.badge.img+18

Hi Steve, I usually solve this with a formula field and filter on that, not sure if there’s a more elegant way to handle it tho

Formula used here was

IF(
  FIND("Abc", Name),
  "Yes",
  "No"
)

  • Author
  • New Participant
  • 2 replies
  • September 23, 2022
TheTimeSavingCo wrote:

Hi Steve, I usually solve this with a formula field and filter on that, not sure if there’s a more elegant way to handle it tho

Formula used here was

IF(
  FIND("Abc", Name),
  "Yes",
  "No"
)

Thanks for the reply Adam. That should get the job done (with a filter on that formula). I’d be changing the filter text often in the actual application, but I suppose it wouldn’t be much more effort in practice to edit the text in the formula column vs the filter contains field value.

Have you ever seen a feature request like a checkbox to go along side a ‘contains’ filter value field for case sensitivity? That would be ideal, but I feel like if that haven’t added something like that by now, it probably hasn’t been requested much.


TheTimeSavingCo
Forum|alt.badge.img+18
Steve_Black wrote:

Thanks for the reply Adam. That should get the job done (with a filter on that formula). I’d be changing the filter text often in the actual application, but I suppose it wouldn’t be much more effort in practice to edit the text in the formula column vs the filter contains field value.

Have you ever seen a feature request like a checkbox to go along side a ‘contains’ filter value field for case sensitivity? That would be ideal, but I feel like if that haven’t added something like that by now, it probably hasn’t been requested much.


Hmm, you could make a text field that said formula field references too, thereby reducing your clicks by 3 heh

Nope, but I don’t really pay much attention to the feature request side of things either I’m afraid


  • Author
  • New Participant
  • 2 replies
  • September 26, 2022
TheTimeSavingCo wrote:

Hmm, you could make a text field that said formula field references too, thereby reducing your clicks by 3 heh

Nope, but I don’t really pay much attention to the feature request side of things either I’m afraid


Could you elaborate on this? I’m not sure what you mean.


Reply