Understood that declaring variables in Sub_Globals makes them available throughout the activity. That being said, if a variable is only going to be used in one sub, is it better (for memory conservation purposes) to declare it in that sub rather than in Sub_Globals?
The memory difference between the two options is insignificant. If you need to preserve the variable value when the sub exits then you need to declare it as a global variable.