Tag: if case

select案例,根据查找文本

我想每15分钟更新一次新的数据表。 我正在寻找的代码是这样的: 案件数据不存在表单“做某事”的情况下,其他“别的东西” 我写的代码是: Dim LastRow1 As Long With Sheets("Stocks") LastRow1 = .Cells(.rows.count, "A").End(xlUp).row End With Dim e As String Dim Cell As Range Dim rRng As Range Dim find As Range Dim stock as string Set rRng = Sheets("results").Range("D2:F" & LastRow1) For Each Cell In rRng If Cell.Value >= (-0.01) And Cell.Value <= 0.01 […]