Forum Discussion
MarkShnier__You
Qrew Legend
Summary fields are very efficient. You are unlikely to run into performance issues unless you hundreds of thousands of records and say 100+ users.
TomHarwood
5 months agoQrew Trainee
Mark,
Update: This is working well with the summary fields to manage quantity. Also, I have two pipelines managing the item name data. One pipeline for adding item/ product name to a compartment when a quantity is sent and a second that activates when quantity levels are " <= 0" to remove item/product name from compartment. For posterity here is the jinja example,
{% if b.item_count <= 0 %} {{CLEAR}} {% else %} {{b.item_name}} {% endif %}
Note: "b" from above is the look-up step from the pipeline.
Thanks for your help!