I create a PO and then I add items to that PO.
I have a table that has rows of items and which PO they are linked to, I want to calculate the total value of a PO, how do I do it.
I wan to do some something like rollup or group by “PurchaseOrderNo” but then I wan to do a SUM on the TotalPrice and put it into a column called POTotal
In your PO Table, create a multiple relation that matches each PO with the associated rows in the PO Items table. Then do a rollup->sum of the total price through that relation.