I have an order form that I have made and It works perfectly on my first initial input of the form.
Parent Table “Order Builder” Has all details for customer Staff and What items are being purchased.
I can select multiple through a REF to a Child sheet called “Cart”
I Have a singular Column that calculates the total cost of all products using this Formula:
SUM ( SELECT (Cart[Total Cost], Cart[Order ID] = [_THISROW].[Related Carts]))
I need the formula to:
- refer to child table and select only the rows with matching receipt numbers to Parent table
- then calculate the “total cost” Column into a sum of all rows created under that Receipt Number
- Do this for every new order I complete.
Problem I’m faced with is that It only works on the first order and doesn’t work again after that.
Please Help Masters!