Is there a way to have a variable (resulting from one script) accessible to other scripts while Excel is running?
I have tried from script1 import df
but it runs script1 again to produce df. I have a script that runs when I first open the workbook and it reads a dataframe and I need that dataframe for other scripts (or for other button clicks). Is there a way to store it in memory or should I read it every time I need it?