Jak mogę automatycznie odświeżać obliczony obszar po zmianie wymiaru kształtu? Moje obecne kodowanie jak poniżej:
Sub ShowArea()
Dim Width As Single
Dim Height As Single
Width = Selection.ShapeRange(1).Width / 72
Height = Selection.ShapeRange(1).Height / 72
With Selection.ShapeRange(1)
Selection.ShapeRange(1).TextFrame.Characters.Text = Round(Width * Height, 1)
End With
End Sub
microsoft-excel
vba
Tze Chyi
źródło
źródło