Bernard has attended:
Excel VBA Intro Intermediate course
Variables
What is a variable
RE: variables
Hi Bernard, thanks for the query. A variable is simple a name indicating a particular value stored in the computer memory. That value can of course change - hence "variable". When you declare variables at the start of your code you are building in formal memory allocation for your variables once the code is compiled. Essentially, any value you are generating and manipulating in your code is a variable.
Hope this helps,
Anthony