share value in a macro

I have a macro invoking another macro ...... how can you pass the value of a variable from one macro to another without using global variables ????
 

Pseudocyclic

Well-known member
How about using separate local variables in each of the macros, and an additional global variable just to handle the transfer?

There are other possibilities - notifications, webhooks... - can you explain why you don't want to use a global variable?
 
Top