Storage App not taking pass input.

@dave1707 You can’t have local variables used by the whole project, the best you can get is local variables used by the whole tab. Why would you even use local variables when you wanted global, though?

@SkyTheCoder You’re correct. I was thinking about coding when I used to work. We had different projects that got pulled into large program. So local variables would be local to the project, not the whole program.

My scripting style has adapted to never using global a due to speed, even if it’s to be used by the whole project, anyway, I assumed I could use them in setup for the whole program due to what Dave said.

It works! Thanks!