Code:
StrWhere = StrWhere + "((([T-LOOKUP-PAG].[" & CodeValue1 & "]) = YES)) or"
StrWhere is a string that will be used for an SQL. The string will contain one or more Where Conditions. However the last OR is to much.
I should count the lenght of the string and then probably use the left function to get a StrWhere without the last or.
How to do this or a better id ?
pat