excel怎樣用VBA把區域內數字0369提取出來

時間 2022-10-31 10:40:03

1樓:匿名使用者

sub combinedata()

dim temp1, temp2, te***temp1 = "'"

temp2 = "'"

te*** = "'"

for i = 999 to 1050

for j = 24 to 32

select case cells(i, j).valuecase 0, 3, 6, 9

temp1 = temp1 & (cells(i, j).value)

case 1, 4, 7

temp2 = temp2 & cells(i, j).valuecase 2, 5, 8

te*** = te*** & cells(i, j).valueend select

next

cells(998, i - 999 + 33) = temp1cells(999, i - 999 + 33) = temp2cells(1000, i - 999 + 33) = te***temp1 = "'"

temp2 = "'"

te*** = "'"

next

end sub

//測試下看看

2樓:匿名使用者

是不是x999:ae999區域內出現0,3,6,9這四個數的次數放在ag998中?其他類似。

excel中怎樣統計區域內不為0值的單元格的個數

天堂滴落的眼淚 可以用countif函式來計算,操作步驟如下 工具 2010版excel 1 先開啟excel,以下圖為例,需要統計a列中不為0值的單元格的個數 2 選中c1單元格並輸入公式 countif a1 a7,0 3 按下回車鍵後就可以得出計算結果了。 空大師在路上 counta函式功能是...

在excel中怎麼讓隨機函式在指定區域內取不重複的值

1 如果指定區域為a2 f8,需要在a11 f17得到a2 f8的不重複的隨機資料,那麼以h2 m8為輔助區域,輸入 rand 按ctrl enter組合鍵結束,得到一組隨機數 2 在a11單元格輸入以下公式,然後向右向下填充到f17單元格 index a 2 f 8,sumproduct smal...

EXCEL用公式查詢區域內包含某欄位的單元格並返回值

e1輸入 if iserror vlookup 姓名 a a,1,if iserror vlookup 姓名 b b,1,if iserror vlookup 姓名 c c,1,if iserror vlookup 姓名 d d,1,無 vlookup 姓名 d d,1,vlookup 姓名 c c...