Tick in bulk the imported transactions (left side) of the Match Bank Data page

Ticking the imported transactions in the Match Bank Data is still an enhancement (Issue 704796). However, there is a simple workaround:

1. Select the bank account.

2. Open Web Console (F12).

3. Type this code:

document.querySelectorAll(‘[aria-checked=”false”]’).forEach((e) => {

e.click();

});

4. Press Enter.

Only 111 checkboxes (the ones in the current window) will be ticked per input. If you need to tick the other checkboxes, scroll down and repeat steps 3 and 4.

This is better than ticking individually the checkboxes.

Leave a comment

Your email address will not be published. Required fields are marked *