1 つの case ステートメントで複数の命令を使用できますか? 7 つ以上の条件があるため、if..then を使用したくありません。私がやりたいのは、コンボボックスの値が「これ」の場合、新しい行を正しい行に挿入し、コンボボックスの値を新しく作成された行に追加することです。例は次のとおりです。
Case ComboBox1.Value = "Venofix"
instruction 1 ~> count the number of row of "venofix"
instruction 2 ~> insert new row at the last row
instruction 3 ~> insert data from combobox
Case ComboBox1.Value = "Penofix"
instruction 1 ~> count the number of row of "penofix"
instruction 2 ~> insert new row at the last row
instruction 3 ~> insert data from combobox