I would like to use C-style string formatting in VBA to make it easier to send SQL instructions the same way I do in Python.
Is there anything similar?
sql = "INSERT INTO customers (name, address) VALUES (%s, %s)"
val = ("John", "Highway 21")
mycursor.execute(sql, val)
Thank you,