I'm tyring to build shopping cart type functionality.
I have a table called tblProducts like {Product_Name: "T-Shirt,Price:20}
I have a collection called colShoppingCart like {colProduct_Name:"T-Shirt",Quantity:2,Product_Total: ???}
What I'd like to do is for Product_Total to be something like LookUp(tblProducts,Product_Name = colProduct_Name, Product_Price)*Quantity
So, basically, I want to loop through each colShoppingCart Record, lookup the price for the product in the tblProducts table, and then multiply it by Quantity in the colShoppingCart collection.