How can I get it done so that this length, width and height of each individual items goes into correct model name? and also I can key in the measurement not in sequence ? and no additional ID comes out?
For the above case, I want the flow to be like > key in e.g (100 model names) > then store LxWxH of each items
I don’t want it to be key in 1 model name > store LxWxH and repeat the rest of items.
Key in all model name first
then store measurement for each item
I need some help on this issue. I can do the model data key in part. only second part I have no idea how should I do it. Please let me know if need more information on my explanation.
hello @MTT
Interesting question. From what I know it is not possible to iterate (loop) through table records automatically. It would be handy if we can.
The way I would attempt to do this is by storing the model, length, width and height in individual arrays. Once all the information is collected in to the arrays then loop through the arrays to create the table records. The looping will do this in a few seconds.
If you do want to create the table records first, then you will need to select the relevant model in the interactive table first every time you want to add the dimensions. Eg: select model → enter length → click save. I imagine this will be too time consuming.
Sorry about the delay getting back to you. Started responding then got sidetracked yesterday. Here is a video where I do a simple app build of what you are talking about. Should be able to address this without looping:
Does this help some? Queries and Aggregations are incredibly powerful.
Pete
Hi @Pete_Hartnett, sorry for late reply due to some other works pile up.
I will go through this method and will try it out…
Should be able to address my issue.