Hello,
I want to set cell format “shrink text to fit in a cell” using a macro (Basic), but I cannot see how. Thanks in advance.
The cell object has a Boolean property .ShrinkToFit
.
myCellObject.ShrinkToFit = True
should do what you want.
1 Like
Thanks Lupp, it works