如何在VBA中使用Select Case的数据和条件?

时间:2012-11-07 10:53:23

标签: excel vba

基本上我想做的事情:

Select Case test_expression
   Case condition_1
      result_1   
   Case condition_n
      result_n
End Select

我需要从电子表格中读取condition_nresult_n,其中condition_1result_1位于A列和B列中。然后,行有时会添加到电子表格中!

感谢您的任何建议!

1 个答案:

答案 0 :(得分:0)

不确定要完成什么,但这是一次尝试

Select Case test_expression 
    Case Sheets(1).Range("A1").Value 
        Dim s as String
        resultText = Sheets(1).Range("B1").Value

        'Now do something with resultText

    Case condition_n 
         result_n 
End Select