Hi,When you use $.item.[Type=='A'], that is with square brackets then the expression is expected to be a FromCalc expression, which means you need to use double quotes, i.e. $.item.[Type=="A"]. The JavaScript equivalent would be $.item.(Type.value=='B') ... using the round brackets. I do tend to s...