Case insensitivity

I have a table k with Date and
table j with date column

now I cant filter rows due to case insensitivity.

action on j table:
SELECT(k[Date], DATE([Date])=DATE([date]))

Note, this expression could significantly impact sync time. The list of values of column โ€˜Dateโ€™ โ€ฆfrom rows of table โ€˜Kโ€™ โ€ฆwhere this condition is true: ((DATE( โ€ฆThe value of column โ€˜Dateโ€™)) is equal to (DATE( โ€ฆThe value of column โ€˜Dateโ€™)))

0 4 537
4 REPLIES 4

Steve
Platinum 4
Platinum 4

Because the column in table k is Date with an uppercase D and in table j itโ€™s date with a lowercase d?

Try this instead:

SELECT(k[Date], DATE([Date])=DATE([_THISROW].[date]))

To my knowledge, there are only two places in all of AppSheet that are case-sensitive: the CONTEXT() function and the FIND() function.

Thank you.

LOOKUP() is also case-sensitive

References are also case-sensitive.

Top Labels in this Space