標題:
Excel 點選任一儲存格,以按鈕篩選結果
[打印本頁]
作者:
thisisjames
時間:
2011-8-14 21:22
標題:
Excel 點選任一儲存格,以按鈕篩選結果
本帖最後由 oobird 於 2011-8-15 13:11 編輯
[attach]7460[/attach]
作者:
oobird
時間:
2011-8-14 23:37
Private Sub CommandButton1_Click()
If Cells.SpecialCells(12).Rows.Count = 65536 Then
Set Rng = Range([a2], [f65536].End(3)).ColumnDifferences(Selection)
Rng.EntireRow.Hidden = True
Else
Cells.EntireRow.Hidden = False
End If
End Sub
複製代碼
[attach]7462[/attach]
作者:
HUNGCHILIN
時間:
2011-8-15 21:40
是一個很好的創意
可以做成增益集工具的一部份 就會更好了
作者:
Happkkevin
時間:
2011-8-17 19:46
回復
2#
oobird
請問 SpecialCells(12) 的 12 含義為何
其他相關的數字有無資料可參考
XlCellType 可以是這些 XlCellType 常數之一。
xlCellTypeAllFormatConditions。 任何格式的儲存格
xlCellTypeAllValidation。具有驗證準則的儲存格
xlCellTypeBlanks。空儲存格
xlCellTypeComments。包含註解的儲存格
xlCellTypeConstants。包含常數的儲存格
xlCellTypeFormulas。包含公式的儲存格
xlCellTypeLastCell。已用範圍的最後一個儲存格
xlCellTypeSameFormatConditions。 有相同格式的儲存格
xlCellTypeSameValidation。 有相同驗證準則的儲存格
xlCellTypeVisible。所有可見儲存格
複製代碼
歡迎光臨 麻辣家族討論版版 (http://forum.twbts.com/)