I try to explain better. I have a table with column relative to a number of product to sell for example:
product1. | product2. | product 3. | total
10 | 10 | 10 | 30
I want to create a series of column based on a value choose by a control for example:
i choose 40 the result need to be:
product1. | price product1 | product2. | price product2 |product 3. | price product 3. | total. |tot price
10 | 400 | 10 | 400 | 10 | 400 | 30 | 1200
if i choose another value i need to produce dynamically the columns.
Is it possible?