2016-01-21 65 views

回答

1

你可以嘗試

Function CountItalics(r As Range) 
Dim rI As Range 
For Each rI In r 
     If rI.Font.Italic Then CountItalics = CountItalics + 1/rI.Cells.MergeArea.Count 
Next rI 
End Function 
+0

非常感謝你這解決了它! – AndrewS