Excel function

2007-02-23 9:04 pm
I want to know if there is some function(like SUM, STDEV)
which can:
auto change to color of the words like
if I enter # >10, it will display with blue color
if I enter # < 10, it will display with red color

thanks in advande~

回答 (3)

2007-02-23 9:19 pm
✔ 最佳答案
新增、變更或移除格式化條件

選取您要新增、變更或移除格式化條件的儲存格。
在 [格式] 功能表上按一下 [設定格式化條件]。
請執行下列動作之一:
新增格式化條件

請執行下列動作之一:
若要以選定儲存格中的值為為格式設定的篩選條件,請按一下 [儲存格的值],選取比較片語,然後鍵入常數值或公式;如果您輸入公式,請以等號 (=) 開頭。

若要以公式為格式設定的篩選條件 (評估選定儲存格中數值以外的資料或條件),請按一下 [公式],並輸入評估 TRUE 或 FALSE 等邏輯值的公式。

按一下 [格式]。
選取儲存格值符合條件或是公式傳回數值 TRUE 時,您要套用的格式。
若要加入另一個條件,請按一下 [新增],再重複步驟 1 至 3。
您可以指定至多三個條件式。若沒有一個指定的條件為真,這些儲存格將保持現有的格式。
2007-02-25 2:50 am
excel VBA

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Range("A1").Select
If Selection >= 10 Then
Selection.Font.ColorIndex = 5
ElseIf Selection < 10 Then
Selection.Font.ColorIndex = 3
End If
End Sub
2007-02-24 6:23 am
可選擇 [格色 -> 格色式化條件]
if your data is in column A, hightligh the column of A
select 格式 -> 格式化條件
條件一, 儲存格的值 -> 點選 大於-> 下一格 打上 10
再點選 格式 -> 選藍色。
新增
條件二,儲存格的值 -> 點選 小於 -> 下一格 打上 10
再點選 格式 -> 選紅色
確定
所有符合條件的值都會轉色。


收錄日期: 2021-04-29 18:40:50
原文連結 [永久失效]:
https://hk.answers.yahoo.com/question/index?qid=20070223000051KK01934

檢視 Wayback Machine 備份