Excel VBA Clear Clipboard

When we use a macro to copy and paste data in Excel, it is good practice to clear the clipboard after the operation. If we don’t, an unauthorized user may use the paste command to access the data we copied to the clipboard. This could lead to the misuse of data.

Additionally, when we gather too many items on the clipboard, Excel may generate an error that says that the clipboard is full. This means that we can no longer use the clipboard in our copy-and-paste operations. Clearing the clipboard prevents this occurrence.

Clearing clipboards also frees up system resources leading to optimal system performance.

There are two kinds of clipboards that we can use in Excel: the Excel clipboard and the Windows clipboard.

In this tutorial, we will learn 2 ways to use Excel VBA to clear each clipboard.

Use Excel VBA to clear the Excel clipboard

To clear the Excel clipboard all we need to do is add the following statement to our code:

This statement can be placed after the last paste operation in the code or after each paste operation to ensure that the clipboard is cleared between the copy and paste operations.

To demonstrate how effective this statement is, we will first create a subroutine minus the statement to copy and paste data and observe the results. We will then include the statement in the procedure and observe the results.

We will use the following data in our demonstration:

Procedure without the statement – Application.CutCopyMode = False

We use the following steps:

  1. From the active worksheet that contains our data, Press Alt + F11 to open the Visual Basic Editor (VBE).
  2. Insert a new module and type in the code below:
  1. Place the cursor anywhere in the subroutine and press F5 to run the code.
  2. Press Alt + F11 to switch back to the active worksheet to observe the results of the code.

We can see that the data has been copied to the destination range and the source data is surrounded by the marching ants border. This means that the data is still on the Excel clipboard and can be pasted again using Ctrl + V or the Paste command on the Excel Ribbon.

Procedure with the statement – Application.CutCopyMode = False

  1. From the active worksheet that contains our data, Press Alt + F11 to open the Visual Basic Editor (VBE).
  2. Insert a new module and type in the code below:
  1. Place the cursor anywhere in the subroutine and press F5 to run the code.
  2. Press Alt + F11 to switch back to the active worksheet to observe the results of the code.

We can see that the data has been copied to the destination range and the source data is no longer surrounded by the marching ants border. This means that the data has been cleared from the Excel clipboard and therefore it cannot be pasted again using Ctrl + V or the Paste command on the Excel Ribbon.

Use Excel VBA to clear the Windows clipboard

We use the EmptyClipboard function to clear the Windows clipboard using Excel VBA.

We use the following steps to explain how this approach works.

  1. Press Alt + F11 to open the Visual Basic Editor.
  2. Insert a module and type in the following procedure:

If you are using a 64-bit version of Excel use the code below:

The ClearClipboard function procedure is public which means that it is accessible to all the other modules in the project. It utilizes three in-built Excel VBA functions: The OpenClipboard function that opens the Windows clipboard, the Emptyclipboard function that clears the Windows clipboard, and the CloseClipboard function that closes the Windows clipboard.

The demoClipboardClear subroutine calls the ClearClipboard function when it is run.

  1. Press Alt + F11 to switch back to the active worksheet.
  2. Copy some data from the Internet and paste it into the worksheet two or three times. This shows that so long as the data is on the Windows clipboard it can be pasted many times.
  1. Press Alt + F11 to switch back to the Visual Basic Editor. Place the cursor in the demoClipboardClear subroutine and press F5 to run it.
  2. Press Alt + F11 to switch back to the active worksheet. Select a new cell below the data we had pasted earlier and press Ctrl + V or click Home >> Clipboard >> Paste to try to paste the data again. We notice that nothing happens because the data we copied from the Internet has been cleared from the Windows clipboard.

Conclusion

In Excel VBA it is good practice to always clear the Excel or Windows clipboard after copying and pasting operations. This prevents unauthorized access to data and the clipboards from becoming full and inaccessible.

Clearing clipboards also frees up system resources leading to optimal system performance.

In this tutorial, we explored two ways that we can use Excel VBA to clear the Excel clipboard and the Windows clipboard.

One way is to use a subroutine that has the Application.CutCopyMode = False statement. This statement can be placed after the last paste operation in the code or after each paste operation to ensure that the clipboard is cleared between the copy and paste operations.

The second way is to use a function that utilizes three in-built Excel VBA functions: OpenClipboard function, EmptyClipboard function, and Closeclipboard function.

Tomasz Decker is an Excel specialist, skilled in data analysis and financial modeling.