Forum Discussion
Anonymous
7 years agoNot applicable
Add COUNTA Values
I have 4 variables I created using COUNTA functions: VARIABLE =
VAR __1 = COUNTA()
VAR __2 = COUNTA()
VAR __3 = COUNTA()
VAR __4 = COUNTA() How can I sum these fours variables? The values ar...
- Anonymous7 years ago
Hi Nejovic,
Just add return function at the end like,
return VAR__1 + VAR__2 + VAR__3 + VAR__4
Regards,
Pradeep
Anonymous
7 years agoNot applicable
Hi Nejovic,
Just add return function at the end like,
return VAR__1 + VAR__2 + VAR__3 + VAR__4
Regards,
Pradeep
Anonymous
7 years agoNot applicable
Thank you!