Forum Discussion
Baudouin1962
Mar 20, 2021Copper Contributor
Excel - Comment modifier le pas de Retrait Gauche ou Droit dans une Cellule ?
Bonjour, Je cherche à savoir si il est possible de modifier le pas (la distance d'un pas) de retrait (gauche ou droite) dans une cellule excel ? Je trouve que l'espace entre le texte et le bord de c...
NikolinoDE
Mar 20, 2021Gold Contributor
Here is some information and a VBA code.
Change the column width and row height
Change the column width or row height in Excel
Adjust line height and width automatically with VBA
Sub SpaltenZeilenEinstellen()
With ActiveSheet.UsedRange
.Columns.AutoFit
.Rows.AutoFit
End With
End Sub
I would be happy to know if I could help.
Nikolino
I know I don't know anything (Socrates)
* Kindly Mark and Vote this reply if it helps please, as it will be beneficial to more Community members reading here.