[FAQ] Limit use global text variable 4 times in a formula

Global List variable doesn't have a hard limit in a formula.

Global Text variable have a hard limit 4 times in a formula.

There is a hidden hard limit. We can't use same global formula variables in a formula more than 4 times.
eg.
Global Text : var1 : $1+1$
Global Text : var2 : $2+2$

$gv(var1)$
$gv(var1)$
$gv(var1)$
$gv(var1)$
$gv(var1)$
$gv(var2)$
$gv(var2)$
$gv(var2)$
$gv(var2)$
$gv(var2)$

will print
2
2
2
2
4
4
4
4

Is this still an issue? I just tried it (seeking to fix an issue I have - but not related after all) on 2/8/22 and this seems to work. I was able to reference a global 9 times successfully. Thanks