table1
orderid
listprice
table2
orderid
listprice
i am left joining table1 with table2 as table2 doesnot
have all the orderids.
i need a formula which adds both the listprices
{table1.listprice}+{table2.listprice} is not giving me
any values as table2 does not have all the orderids as
table1.
how to prevent this?
I tried
@formula1
if isnull({table2.LISTPRICE}) then "0"
@formula2 = table1.listprice+@formula1
but table1 list price is a currency and is not allowing
me make @formula
could anyone help me with this adding currency value of
0 to the table1 when there is no existence of orderid
in table2
orderid
listprice
table2
orderid
listprice
i am left joining table1 with table2 as table2 doesnot
have all the orderids.
i need a formula which adds both the listprices
{table1.listprice}+{table2.listprice} is not giving me
any values as table2 does not have all the orderids as
table1.
how to prevent this?
I tried
@formula1
if isnull({table2.LISTPRICE}) then "0"
@formula2 = table1.listprice+@formula1
but table1 list price is a currency and is not allowing
me make @formula
could anyone help me with this adding currency value of
0 to the table1 when there is no existence of orderid
in table2