Question
Math Evaluate
I have a shopping cart and I have the Installation of each
item set up as a
price. I have the install total for each item set to the Install price times
the qty ordered. Then at the bottom of the cart I need to get the install
total for all the items. That's where I am stuck. The set up looks like
this:
Item Qty. Install
As5D 2 $280.00
75GVC 1 $69.00
Total Installation: #349.00 >>>>> this is the number I need and can't figure
out.
The Install for each item is using the following formula:
<CFSET TheInstall = Evaluate((MyCart[TheIndex][6]) * (MyCart[TheIndex][3]))>
How would I get the total installation?? I thought about using a list
function, but I don't know exactly which function to use, or how to get them
all added together at the end.
Thanks,
Kim
price. I have the install total for each item set to the Install price times
the qty ordered. Then at the bottom of the cart I need to get the install
total for all the items. That's where I am stuck. The set up looks like
this:
Item Qty. Install
As5D 2 $280.00
75GVC 1 $69.00
Total Installation: #349.00 >>>>> this is the number I need and can't figure
out.
The Install for each item is using the following formula:
<CFSET TheInstall = Evaluate((MyCart[TheIndex][6]) * (MyCart[TheIndex][3]))>
How would I get the total installation?? I thought about using a list
function, but I don't know exactly which function to use, or how to get them
all added together at the end.
Thanks,
Kim