Integromat: Number + dot + string is read as value from module

Petr Hnilica
2 min readMar 8, 2018

Did you write more complex get() function (or any) with indexes but Integromat read it as non-existent module value? Encapsulate it to string function.

If you write get() function to get some value from array it can look like this. It looks valid but …

… if you executes it and then look how it looks in module. It changes to non-existent value from 168th module in scenario.

Copypasteing it to text editor you get: {{get(68.array; 163.i + “.code”)}}

To solve it encapsulate it to tostring() function.

In text editor you get: {{get(68.array; toString(1) + “.” + toString(63.i) + “.code”)}}

--

--