Allow use to configure List Create and paste in a string that’s in a list format, and it automatically adds inputs based on how many elements are in the list format, and it’ll also add each element of your list into the inputs for you.
1 Like
If I were you, I would just use String Split
, its a suprisingly cheap operation and will do exactly what you want, although limited to 512 characters
Ever since data tables have been released, I’ve stopped using List Create
due to how much cheaper and easier to use data tables are
You can concat string split chips into bigger list so 512 characters limit shouldn’t be an issue
This is also very true! I was suprised how much CPU I actually saved switching from a single List Create
to a bunch of String Split/List Concat, although I’ve saved WAYYY more using data tables, so I use neither method anymore