Locals Window! that's what I was interested in
Thanks.
I was aware of the debugging capability anyways.
So, I've created VBA scripts by copy-pasting and following exact instructions posted online before. Now I want to go about creating my own code to interrogate and modify my sheets. I have never properly understood the starting point though -- in particular the Project tree structure (Excel Objects and Modules). In my Project - VBAProject window in the VBA editor, I see several Projects at the highest level, including the file I have open. Under that level, in the branch related to my open workbook, I have 2no. folders: Microsoft Excel Objects (under which all my sheets are listed) and Modules. I have used VBA code I've found online before, that has instructed me to place the code in either of those folders, but not really justifying why.
For some further explanation of my intentions for the immediate future: I want to write a script that will loop through a whole workbook, read values, collect those values into a list, drop that list into a single worksheet, and loop through this several times for a number of conditions. From what I gather from Excel VBA explanations, I would create such a script under a new "Module" in the module folder? I'm really just looking for some confirmation; if you have any idea where I find a
good introduction to this tree structure, I would appreciate the link. Most stuff I read explains it as if I'm new to programming -- you might be able to tell that I'm clearly thinking in the Matlab environment, so I am thinking about files with data, and then Scripts and Functions with which I read-write to/from those data files.