1. Eexcel能否利用函授公式實現單元格自動填充顏色
1,
選中復H3至最後一個數據行----條件格式---新建制規則---使用公式確定要設置格式的單元格--- =AND(OR(I3="居民照明",I3="農村照明"),H3>=300) ----設置單元格底紋為某個顏色----確定
2
選中H3至最後一個數據行----條件格式---新建規則---使用公式確定要設置格式的單元格--- =AND(I3<>"居民照明",I3<>"農村照明",I3<>"") ----設置單元格底紋為另一個顏色----確定
2. 遍歷工作表查找字元串並替換 VBA EXCEL
Range("A1").Select
Selection.Copy
Cells.Find(What:="*照明*", After:=ActiveCell, LookIn:=xlFormulas, LookAt _
:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _
False, MatchByte:=False, SearchFormat:=False).Activate
Cells.FindNext(After:=ActiveCell).Activate
Cells.FindNext(After:=ActiveCell).Activate
Cells.FindNext(After:=ActiveCell).Activate
Cells.FindNext(After:=ActiveCell).Activate
Cells.FindNext(After:=ActiveCell).Activate
Cells.FindNext(After:=ActiveCell).Activate
ActiveCell.Replace What:="*照明*", Replacement:="馬尼公司照明*30倍", LookAt:= _
xlPart, SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
Cells.FindNext(After:=ActiveCell).Activate
ActiveCell.Replace What:="*照明*", Replacement:="馬尼公司照明*30倍", LookAt:= _
xlPart, SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
Cells.FindNext(After:=ActiveCell).Activate
ActiveCell.Replace What:="*照明*", Replacement:="馬尼公司照明*30倍", LookAt:= _
xlPart, SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
Cells.FindNext(After:=ActiveCell).Activate
ActiveCell.Replace What:="*照明*", Replacement:="馬尼公司照明*30倍", LookAt:= _
xlPart, SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
Cells.FindNext(After:=ActiveCell).Activate
ActiveCell.Replace What:="*照明*", Replacement:="馬尼公司照明*30倍", LookAt:= _
xlPart, SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
Cells.FindNext(After:=ActiveCell).Activate
3. excel裡面照明功能是做什麼用的呢
alt+i+m 插入一個批註後,選中批註就可以使用該功能了.
大致是為對象設置三維效果的
4. excel2007里的照明怎麼用
alt+i+m
插入一個批註後,選中批註就可以使用該功能了.
大致是為對象設置三維效果的
5. excel 照明燈泡損壞率怎麼算
=損壞數÷燈泡總數x100%=損壞數/燈泡總數*100%
6. 分組排序排名 EXCEL
在G3、抄H3、K3、L3單元格分別輸入以下數組公式,按Ctrl+Shift+Enter組合鍵,然後向下填充公式
=IFERROR(INDEX(A$3:A$9,MATCH(LARGE(IF(C$3:C$9<>"",B$3:B$9),ROW(A1))&"ZM",B$3:B$9&C$3:C$9,0)),"")
=IFERROR(LARGE(IF(C$3:C$9<>"",B$3:B$9),ROW(A1)),"")
=IFERROR(INDEX(A$3:A$9,MATCH(LARGE(IF(D$3:D$9<>"",B$3:B$9),ROW(A1))&"ZMF",B$3:B$9&D$3:D$9,0)),"")
=IFERROR(LARGE(IF(D$3:D$9<>"",B$3:B$9),ROW(A1)),"")
詳見附圖示例