cristianivanoff
Technical User
Hello all,
I have a cross tab with string fields in both rows and columns.
Rows are {global_comp_pivot.Bandwidth}(string looks like: 8 Mbit/s) and the summarized field I have this formula:
This works fine as a SUM. But if I want to 'Show percentage of total' it makes CR to crash.
What am i doing wrong?
Any suggestions to do this or solve my prlem is appreciated
I use CR 9.
BR Cristian
I have a cross tab with string fields in both rows and columns.
Rows are {global_comp_pivot.Bandwidth}(string looks like: 8 Mbit/s) and the summarized field I have this formula:
Code:
if right({global_comp_pivot.Bandwidth},6)="Kbit/s" then
tonumber(mid({global_comp_pivot.Bandwidth},1,length({global_comp_pivot.Bandwidth})-6))/1000
else if right({global_comp_pivot.Bandwidth},6)="Mbit/s" then
tonumber(mid({global_comp_pivot.Bandwidth},1,length({global_comp_pivot.Bandwidth})-6))
else if right({global_comp_pivot.Bandwidth},6)="Gbit/s" then
tonumber(mid({global_comp_pivot.Bandwidth},1,length({global_comp_pivot.Bandwidth})-6))*1000
else 0
What am i doing wrong?
Any suggestions to do this or solve my prlem is appreciated
I use CR 9.
BR Cristian