Skip to content
Advertisement

How to change SQL queries in Excel using VBA?

I have a workbook connected to a database that has stock data. I have around 500 stock symbol data and I fetch them one by one by entering the stock symbol (pink highlighted) in the query as shown below.
enter image description here

All the time I have to open Connection Properties then Definition to change the stock symbol. This process is time-consuming.

I want a textbox in my Ribbon where I insert stock symbol it will change the query.

Here’s my VBA code after I recorded a macro.

Advertisement

Answer

Text boxes in ribbons are really messy. A much easier approach is a popup inputbox. Change the .CommandText to:

Array("Select QuoteDate ,StockSymbol, HighPrice, LowPrice, ClosePrice, Volume From StockQuotedaily Where StockSYmbol='" & InputBox("Stock Symbol"), "' Order by Quotedate")

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement