Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はVBAに少し問題があります.Range関数の行と列をそのような文字列形式に入れたいです:
debut = "BH" & LTrim(Str(i)) fin = "DB" & LTrim(Str(i)) For Each Cell In Ws.Range("debut:fin")
しかし、エラーが発生しました。どうすれば解決できますか? ありがとう
あなたが行った方法 ( "debut:fin")、範囲は実際にはその文字列と等しく、無効です。あなたがする必要があるのは、2 つの文字列を演算子:で間に連結することです。&
"debut:fin"
:
&
For Each Cell In Ws.Range(debut & ":" & fin)