Durango122
MIS
Hi Folks
cr 9.0
ms sql
i have a report that contains a gr call contact_id
here is a sample of colums
contact id 529 sma total
jim 5 2 7
i create a formula for each of the 529,sma,total
something like this
--------------------------------------------
@529_S
//529
if {TRANSACTION_HISTORY.POSTING_DATE} in Date(year({?End_Date}),1,1) to
Date(Year({?End_Date}),Month({?End_Date}),day({?End_Date}))
and
{FUNDS.PRODUCT_TYPE} = "529" and
{TRANSACTION_HISTORY.TRADE_CLASS} = "S"
then
round({TRANSACTION_HISTORY.GROSS_AMOUNT})
else
0
----------------------------------
and so one for the other
and i created a summary base on the contact_id
sum(@529_S,contact_id)
------------------------------
that works fine
and for my total
i got this formula
@YTD_TOT_S
{@YTD_MF_S}+{@YTD_529_S}
and created a summary like this
sum(YTD_TOT_S,contact_id)
thats fine
now there asking to have a parameter call Amount
and i made it and have 0.00 as default no link to table
They want to be abel to enter an amount let say 10,000
and pass this value to the sum(YTD_TOT_S,contact_id)
i tried this
and get error
sum(YTD_TOT_S,contact_id) = {?Amount}
how can i get the paramter to get the amount base on
sum(YTD_TOT_S,contact_id)
with is my summary of {@YTD_MF_S}+{@YTD_529_S}
thanks
Durango122
if it moves and should not used Duck Tape
if does not move and should used WD-40
cr 9.0
ms sql
i have a report that contains a gr call contact_id
here is a sample of colums
contact id 529 sma total
jim 5 2 7
i create a formula for each of the 529,sma,total
something like this
--------------------------------------------
@529_S
//529
if {TRANSACTION_HISTORY.POSTING_DATE} in Date(year({?End_Date}),1,1) to
Date(Year({?End_Date}),Month({?End_Date}),day({?End_Date}))
and
{FUNDS.PRODUCT_TYPE} = "529" and
{TRANSACTION_HISTORY.TRADE_CLASS} = "S"
then
round({TRANSACTION_HISTORY.GROSS_AMOUNT})
else
0
----------------------------------
and so one for the other
and i created a summary base on the contact_id
sum(@529_S,contact_id)
------------------------------
that works fine
and for my total
i got this formula
@YTD_TOT_S
{@YTD_MF_S}+{@YTD_529_S}
and created a summary like this
sum(YTD_TOT_S,contact_id)
thats fine
now there asking to have a parameter call Amount
and i made it and have 0.00 as default no link to table
They want to be abel to enter an amount let say 10,000
and pass this value to the sum(YTD_TOT_S,contact_id)
i tried this
and get error
sum(YTD_TOT_S,contact_id) = {?Amount}
how can i get the paramter to get the amount base on
sum(YTD_TOT_S,contact_id)
with is my summary of {@YTD_MF_S}+{@YTD_529_S}
thanks
Durango122
if it moves and should not used Duck Tape
if does not move and should used WD-40