khanhnth02
Thành viên thường trực




- Tham gia
- 5/8/07
- Bài viết
- 329
- Được thích
- 36
Sub FitRowHeightByHeightPicture()
On Error Resume Next
Application.ScreenUpdating = False
Dim o
for each o in ActiveSheet.Pictures
With o.TopLeftCell
.EntireRow.RowHeight = o.Height + 3 + o.top - .top
End With
Next
Application.ScreenUpdating = true
End Sub