We have these tables:
Invntory Table
--------------------
Invt_ID Invt_Desc
1 Product 1
ListPrice Table
---------------------
Invt_ID Price Type
1 10.50 A
1 11.00 B
1 10.75 C
We created a report to show the List_Price comparation where the result is:
Invt_ID Invt_Desc List_A List_B List_C
1 Product 1 10.50 0.00 0.00
1 Product 1 0.00 11.00 0.00
1 Product 1 0.00 0.00 10.75
We inserted 3 formulas: List_A, List_B and List_C into the report where
List_A : IF {ListPrice.Type} = "A" THEN {ListPrice.Price}
List_B : IF {ListPrice.Type} = "B" THEN {ListPrice.Price}
List_C : IF {ListPrice.Type} = "C" THEN {ListPrice.Price}
... but we would like to get the next result:
Invt_ID Invt_Desc List_A List_B List_C
1 Product 1 10.50 11.00 10.75
Is it possible? How can we do that?
We really appreciate any response. THANKS!
Invntory Table
--------------------
Invt_ID Invt_Desc
1 Product 1
ListPrice Table
---------------------
Invt_ID Price Type
1 10.50 A
1 11.00 B
1 10.75 C
We created a report to show the List_Price comparation where the result is:
Invt_ID Invt_Desc List_A List_B List_C
1 Product 1 10.50 0.00 0.00
1 Product 1 0.00 11.00 0.00
1 Product 1 0.00 0.00 10.75
We inserted 3 formulas: List_A, List_B and List_C into the report where
List_A : IF {ListPrice.Type} = "A" THEN {ListPrice.Price}
List_B : IF {ListPrice.Type} = "B" THEN {ListPrice.Price}
List_C : IF {ListPrice.Type} = "C" THEN {ListPrice.Price}
... but we would like to get the next result:
Invt_ID Invt_Desc List_A List_B List_C
1 Product 1 10.50 11.00 10.75
Is it possible? How can we do that?
We really appreciate any response. THANKS!