Normally, inside a textbox, the shortcut Ctrl+Backspace deletes the previous word, but in the Excel Find and Replace window, it doesn't work and it inserts a character with a rectangular shape.
Is there a way to change that?
Normally, inside a textbox, the shortcut Ctrl+Backspace deletes the previous word, but in the Excel Find and Replace window, it doesn't work and it inserts a character with a rectangular shape.
Is there a way to change that?
At the moment there's no official way (and there probably never be, because Microsoft), but you can use an AutoHotKey script to do that. You can follow the other answers on StackExchange here and here.
Basically, just install AHK and create a script with this line:
^Backspace::Send ^+{Left} {Backspace}
then double click on the .ahk file to run it.
Currently, there is no way to change that. This is part of a legacy behavior that was also present in Notepad before it was removed in 2018. It might eventually get patched in Excel as well.
The weird character in question is the ASCII "DELETE" control character (0x7F); more info here.