0
A
回答
0
對於第一種格式,我能夠拼湊出以下幾點:
Private Sub CheckBox1_Click()
Dim rngMyRange As Range
Set rngMyRange = ActiveWorkbook.Worksheets("tim-vgr_hgn").Range("C3:AO46") 'Set your range here
If rngMyRange.FormatConditions.Count = 0 Then 'Set Conditional Formats
With rngMyRange
.FormatConditions.AddColorScale ColorScaleType:=3
' Format the first color as green
.FormatConditions(1).ColorScaleCriteria(1).Type = xlConditionValueNumber
.FormatConditions(1).ColorScaleCriteria(1).Value = 0
.FormatConditions(1).ColorScaleCriteria(1).FormatColor.Color = RGB(0, 255, 0)
' Format the second color as yellow
.FormatConditions(1).ColorScaleCriteria(2).Type = xlConditionValueNumber
.FormatConditions(1).ColorScaleCriteria(2).Value = 120
.FormatConditions(1).ColorScaleCriteria(2).FormatColor.Color = RGB(255, 255, 0)
' Format the third color as red
.FormatConditions(1).ColorScaleCriteria(3).Type = xlConditionValueNumber
.FormatConditions(1).ColorScaleCriteria(3).Value = 7200
.FormatConditions(1).ColorScaleCriteria(3).FormatColor.Color = RGB(255, 0, 0)
End With
Else 'Clear Conditional Formats
rngMyRange.FormatConditions.Delete
End If
End Sub
但是,我怎麼重新創建第二格式?
我將開始第二種格式的新問題。
相關問題
- 1. 用於打印的條件格式化與開關的公式
- 2. 使用VBA條件格式化
- 3. 無條件的Excel和VBA格式化
- 4. Application.OnTime VBA沒有關閉和打開excel
- 5. 條件格式或使用VBA格式
- 6. 如何使用VBA格式化已關閉的Excel工作表
- 7. 條件格式化公式/ VBA
- 8. NGINX有條件地打開/關閉proxy_intercept_errors
- 9. 打開/關閉菜單條件
- 10. 2表格關閉和打開
- 11. jquery切換打開和關閉2格
- 12. 使用VBA複製有條件格式化的單元格
- 13. 打開關閉表格
- 14. 使用perl打開和關閉網頁
- 15. 使用cmd打開和關閉程序
- 16. 使用OpenCV打開和關閉
- 17. 使用bash打開和關閉進程
- 18. Excel中使用VBA爲正則表達式條件格式化
- 19. vba條件格式化與Worksheet_SelectionChange
- 20. 條件格式化vba與if
- 21. vba條件格式化到列
- 22. Excel VBA條件格式化不執行
- 23. VBA格式化條件格式化循環中的數字
- 24. 使用C關閉打開的文件
- 25. 關閉由vba宏用c打開的模式#
- 26. VBA打開excel,修改(Rank),關閉excel
- 27. 顯式打開和關閉遊標
- 28. 關閉和打開文件之間的條件
- 29. 格式打開時關閉複選框事件,格式重新加載時關閉格式
- 30. 打開和關閉盒(格)使用CSS或jQuery的
您可以使用'.FormatConditions.Delete'去除條件,如果你想再次啓用它,你可以使用'.FormatConditions.Add'方法給定範圍。 [參考](http://www.ozgrid.com/forum/showthread.php?t=138066) – newguy
切換一個條件格式開/關,使用'= AND(一些公式,toggleboolean)',因此你可以控制通過調整'toggleboolean'來打開/關閉 – Rosetta
我給出的第一個例子不使用公式。 – posfan12