You can prevent one or more accounts from being uploaded by using the Do Not Upload List.
...
Tip: To exclude multiple accounts, you can specify a pattern in the Expression box. Here are some examples:
Expression | Will Exclude |
---|---|
.* | Match all accounts. |
ABC.* | All accounts that start with ABC |
(?!^ABC).* | All accounts that do not start with ABC |
(?!^ABC)(?!^XYZ).* | All accounts that do not start with ABC or XYZ |
^[0-9]+$ | All numeric accounts |
^.*CAD$ | All accounts ending in CAD |
ABC[0-9][0-9][0-9] | All acounts starting with ABC followed by three digits |
...