Excel
From Leo's Notes
Last edited on 30 December 2021, at 02:08.
Tasks
Trim Cell Spaces
If cells contain extraneous leading or trailing spaces and you wish to trim each cell's content:
- Select the cell range you wish to trim
- Hit
Alt + F11
. In the VB window, insert a new module:Insert -> Module
. - Define a new module with the following code:
Sub TrimCellSpace() On Error Resume Next Dim Rng As Range Dim WorkRng As Range Set WorkRng = Application.InputBox("Range", "Set Range", Application.Selection.Address, Type:=8) For Each Rng In WorkRng Rng.Value = VBA.Trim(Rng.Value) Next End Sub
- Hit
F5
and run against the selected range.