I have an app using the new UI. One field is [Date of Birth] and the user is trying to find “01/12/1979” which is in DDMMYYYY format. But to find the record they have to search in MMDDYYYY format as “12/01/1979”. The google sheet is set to UK, the spreadsheet column is set to DDMMYYYY and I get this issue in browser mode and also the 2 app definition views.
You could also add a text VC that is searchable but use a “false” into the show_if with an expression that calculates it with the right format, like this:
I’d initally considered this option, but rejected it because I knew you couldn’t have something both hidden and seachable. So I got around this by putting in the show_if formula as
UserEmail()="me@me.com"
The only slight issue now is its it’s now looking for dates matching both US (MMDDYYYY) and UK (DDMMYYYY) formats. Now I could turn off searchable for the origional [Data of Brith] column. But I think that could cause problems if they try to use the filter option in a table view.