Retrieving values from another column in the same view

Hi

In 3. column i view1 I have some calculated code, wich results in an output value.

In 5 column in the same view I need to use this output value. How is this possible?

Subject: recalculate

You can’t go back and read the other column to create your new column. You need to do the calculation again. So, a simplified example:

if column1 has as a formula:

price1 + price2

then column 5 formula might be:

subtotal := price1 + price2;

subtotal + tax;

Subject: it didn’t do it

I tried recalculating, but it did’nt do it. The 3rd column has multiple values and multible values is posted in new lines and that seemed to make a problem. However i solved the issue by making an ekstra computed field on the form.

thx for answering.

Tom