Some weird things in your code:
- uSQL contains the text of your SQL query, not the answer.
- one can expect the result to be in RS2
- one can expect a month number to be numeric, and not a string
To know what is what, use the debugger and inspect variables
-----
Your code do not behave the way you expect, and you don't understand why !
There is an almost universal solution: Run your code on debugger step by step, inspect variables.
The debugger is here to show you what your code is doing and your task is to compare with what it should do.
There is no magic in the debugger, it don't know what your is supposed to do, it don't find bugs, it just help you to by showing you what is going on. When the code don't do what is expected, you are close to a bug.
To see what your code is doing: Just set a breakpoint and see your code performing, the debugger allow you to execute lines 1 by 1 and to inspect variables as it execute.
Debugger - Wikipedia, the free encyclopedia[
^]
Debugging in Excel VBA - EASY Excel Macros[
^]
MS Excel 2013: VBA Debugging Introduction[
^]
How to debug Excel VBA - YouTube[
^]
The debugger is here to only show you what your code is doing and your task is to compare with what it should do.