Calling items from inline script to block loop
Hello,
I was wondering if it is possible to call items from the inline script to the block loop? For instance, if I have an item like varA = ["white"] in the inline script, is there any way to call varA in the cells in the block loop?
Thanks!

Comments
Hi,
Yes, I believe the syntax is this:
=var.varA, which would then translate to[white]. Keep in mind that this only works for variables that are part of var. So, for example,var.variablewould work, whilevariable, wouldn't.Does that make sense?
Eduard
Hi Eduard,
Yes thank you! It works perfectly.