N Number11 Member Local time Today, 15:17 Joined Jan 29, 2020 Messages 624 Sep 4, 2023 #1 I am looking for a way to have the form highlight any names that greater than in characters First Name <20 Surname <30 any pointers please?
I am looking for a way to have the form highlight any names that greater than in characters First Name <20 Surname <30 any pointers please?
Eugene-LS Registered User. Local time Today, 18:17 Joined Dec 7, 2018 Messages 519 Sep 4, 2023 #2 Use Len() function
Cotswold Well-known member Local time Today, 15:17 Joined Dec 31, 2020 Messages 1,016 Sep 4, 2023 #3 I'll just add that if you haven't saved the Fields in the Table using Trim() or by some other method, then Len() will not do that for you XX = "ASDFGH" + Space(6) So, Len(XX) will give you 12, not maybe the 6 it looks like.
I'll just add that if you haven't saved the Fields in the Table using Trim() or by some other method, then Len() will not do that for you XX = "ASDFGH" + Space(6) So, Len(XX) will give you 12, not maybe the 6 it looks like.
N Number11 Member Local time Today, 15:17 Joined Jan 29, 2020 Messages 624 Sep 4, 2023 #4 Eugene-LS said: Use Len() function Click to expand... Thanks that is working fine now