2013-07-17 86 views

回答

2

嘗試:

colCount = wSheet.UsedRange.Rows(1).Columns.Count 

(修訂)

+0

它看起來像你是混合你的行和列? –

+0

是的:)修改。 –

2

爲了得到最右邊的填充柱的數量:

colCount = .Cells(1, .Columns.Count).End(xlToLeft).Column 

要獲得非空白單元格的數量,因爲你的頭銜說:

Application.WorksheetFunction.CountA(.Rows(1).EntireRow.Cells)