Do While True
...
If Trim(Worksheets(List0).Cells(RowID, 8).Value) <> "" And InStr(User_List, ";" & Trim(Worksheets(List0).Cells(RowID, 8).Value)) = 0 Then Continue Do
End If
but I get 'Syntax Error' due to 'Continue Do'. What to adjust?
do while condition
if certain condition then
exit do
endif
loop