Lists in [square brackets] hold values, nested collections, and quoted strings

All 9 scenarios hold

A blank cell captures null; unquoted elements are trimmed.

expected outcome broken scenario
ScenarioInputCaptured?
Null list“”
Empty list[][]
Basic list[a, b, c]
  • a
  • b
  • c
Nested list[[a], [b], [c]]
    • a
    • b
    • c
Mixed content list[[],a]
  • []
  • a
List with set[{a,b}, c]
    • a
    • b
  • c
List with map[[a:b], c]
  • a
    b
  • c
List with quoted value["a,b", c]
  • a,b
  • c
Extra whitespace [ a , a ]
  • a
  • a