Hello,
I'm going to try and explain this as best as I can. Using Crystal ver 8 and have created crosstab.
Now in my rows I have transactionTypeCode and @Name
TransactionTypeCode = Buy, Sell, Tri, Tro
Name formula is as Follows
if {V_AIC_SALES.OriginCode} = "DIR" and {V_AIC_SALES.RedemptionCode} <> "RESPGA" then "MANUAL" else
if {V_AIC_SALES.OriginCode} = "TRK" then "ROLLOVER" else
if {V_AIC_SALES.OriginCode} = "WOR" then "WOR"
Columns I have PlacementDate(is April 2003...I grouped by month).
The problem is as follows. I set the summarized field to do a count on @Name, however I'm not sure why I'm getting values back especially under the situation if {V_AIC_SALES.OriginCode} = "DIR" and {V_AIC_SALES.RedemptionCode} <> "RESPGA" then "MANUAL". Currently, when the name row is showing Blank, values are showing something. I need the report to only show
Apr May June
Buy Manual 5 1 6
Wor 6 2 2
Rollover 7 3 1
But remember I only want to show manuals and count it when
if {V_AIC_SALES.OriginCode} = "DIR" and {V_AIC_SALES.RedemptionCode} <> "RESPGA" then "MANUAL"
Everything else will remain the same. This is the only special formula.
Hope this makes sense
I'm going to try and explain this as best as I can. Using Crystal ver 8 and have created crosstab.
Now in my rows I have transactionTypeCode and @Name
TransactionTypeCode = Buy, Sell, Tri, Tro
Name formula is as Follows
if {V_AIC_SALES.OriginCode} = "DIR" and {V_AIC_SALES.RedemptionCode} <> "RESPGA" then "MANUAL" else
if {V_AIC_SALES.OriginCode} = "TRK" then "ROLLOVER" else
if {V_AIC_SALES.OriginCode} = "WOR" then "WOR"
Columns I have PlacementDate(is April 2003...I grouped by month).
The problem is as follows. I set the summarized field to do a count on @Name, however I'm not sure why I'm getting values back especially under the situation if {V_AIC_SALES.OriginCode} = "DIR" and {V_AIC_SALES.RedemptionCode} <> "RESPGA" then "MANUAL". Currently, when the name row is showing Blank, values are showing something. I need the report to only show
Apr May June
Buy Manual 5 1 6
Wor 6 2 2
Rollover 7 3 1
But remember I only want to show manuals and count it when
if {V_AIC_SALES.OriginCode} = "DIR" and {V_AIC_SALES.RedemptionCode} <> "RESPGA" then "MANUAL"
Everything else will remain the same. This is the only special formula.
Hope this makes sense