isladogs
Access MVP / VIP
- Local time
- Today, 02:42
- Joined
- Jan 14, 2017
- Messages
- 19,312
So loop through with code similar to this to remove all double commas
Code:
Dim X As Integer, Y As Integer
StartCheck:
X = Len(strSQL)
strSQL = Replace(strSQL,",,",",")
Y = Len (strSQL)
If Y<X Then GoTo StartCheck