DJWheezyWeez
Technical User
I'm using CR XI.
Let's say I have something like this:
If I want to combine C, Ca, and D into D, I made this formula to do that:
What I'm trying to do is sum Number for each letter using the new formula. The problem is that the Number column is actually a subreport. I'm trying to do a normal sum formula but when I use the shared numbervar, it says I need a field there and can't use the shared numbervar.
I realize I'm probably missing a lot of info for someone to figure out what's going on but anyone have any ideas around this? I can try to give more info if requested.
-DJWW
Let's say I have something like this:
Code:
Letter Number
A 0
B 20000
C 3000000
Ca 1000000
D 6000000
Da 30000
If I want to combine C, Ca, and D into D, I made this formula to do that:
Code:
if {table.Letter} = "C"
then "D"
else if {table.Letter} = "Ca"
then "D"
else if {table.Letter} = "D"
then "D"
else {table.Letter}
What I'm trying to do is sum Number for each letter using the new formula. The problem is that the Number column is actually a subreport. I'm trying to do a normal sum formula but when I use the shared numbervar, it says I need a field there and can't use the shared numbervar.
I realize I'm probably missing a lot of info for someone to figure out what's going on but anyone have any ideas around this? I can try to give more info if requested.
-DJWW