Veroniquelu
10 years agoContributor
How to use the value in the previous function
For example:
function a (b)
{
return (c:c)
}
function a (e)
{
return (f:f)
}
function d (c,f)
{
//Statement
}
I am calling the functions thru excel, I would like to run function a twice and use the returned value in function d. how can I do that ? or if there's any other easier way?
My issue has been resolved, I simply used multiple Global Variables instead of trying to use Global Array. Thank you all the same.