Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I recently created several variables containing expressions and then have one variable that adds the other variables together
example V4 = V1 + V2 + V3
I had issues when using V4 in my charts and found out it was cased by comments I had underneath the expressions in V1, V2, V3
Is this a common issue? Are there limitations or best practices to follow? It took some time before I was able to determine the root cause of the issue
maybe your comment was
// a comment
and it doesn't work when you add another variable?
I suppose it's better a
/* another comment */
maybe your comment was
// a comment
and it doesn't work when you add another variable?
I suppose it's better a
/* another comment */
my comments wre done as //
in the future I will try /* */ and see if that makes a difference
Thanks for your quick response