LoginSignup
0
0

More than 5 years have passed since last update.

【Access VBA覚書】SQLステートメント実行の際にパラメータを入力できるようにする #若葉マーク

Last updated at Posted at 2017-09-06

VBAでSQLステートメントを実行する際、パラメータを入力できるようにする

Dim SQL_REPORT As string

 SQL_REPORT = "UDATE テーブル名 SET テーブル名.フィールド名 = [入力してください] WHERE 条件 ;"
   DoCmd.RunSQL SQL_REPORT

クエリーと同じですが、VBAのSQLステートメントでも可能でした。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0