时间:2017-02-17 16:43:10
Sub 宏1()
'
' 宏1 宏
'
For x = 3 To [C65536].End(3).Row
If Len(Cells(x, 4)) > 24 Or Len(Cells(x, 6)) > 14 Then
Rows(x).Select
Selection.RowHeight = 24
Else
Rows(x).Select
Selection.RowHeight = 13
End If
Next x
End Sub