Hi,
If one user has problems with your Excel VBA form while others do not, the problem could be related to the user's system or Excel settings. Here are some methods to troubleshoot and fix this issue-
- Check to see if the user's Excel or system has a different character encoding or language set. Characters can become garbled when copied from one encoding to another. Make sure that both the source and destination environments use the same character encoding.
- Check to make sure the font used in the Excel VBA form is installed and accessible on the user's computer. When pasting, symbols or boxes may appear if the form uses a font that is not installed on the user's system.
- When copying and pasting data, clipboard issues can happen. Ask that the user copy and paste the text into a different application (e.g., Notepad) to see if the problem persists. If it does, the issue could be with the clipboard or the user's computer.
- Check for any Excel add-ins or third-party software that may be interfering with clipboard or text processing. Disabling such add-ins temporarily may help in determining whether they are causing the issue.
- Check that the user is using an Excel version that is compatible with your VBA form. Compatibility issues can occasionally result in unexpected behavior.
- Check to see if the user's Excel installation is up to date. Ask them to install any updates or service packs that are available.
Best Regards.