'Continue While' can only appear inside a 'While' statement
A Continue While statement can only appear within a For...Next loop.
Error ID: BC30784
To correct this error
If the Continue While statement is in a Do...Loop loop, change the statement to Continue Do.
If the Continue While statement is in a For...Next loop, change the statement to Continue For.
Otherwise, remove the Continue While statement.