on 2010 Mar 25 3:51 PM
Does anyone know of a work-around to be able to create a chart based on a Running Total? (ex True/False condition counts)
Thanks!
Could you please explain your situation in more detail? What are the characteristics of the chart you are looking for?
Carl
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I can't say I'm a charting expert, but I think you can do this with two formula fields (basic syntax):
' {@TrueFalse}:
if <condition> then
formula = "true"
else
formula = "false"
end if
' {@TFCount}:
if {@TrueFalse} = "true" then
formula = 1
else
formula = 0
end if
Then build your graphs over these two fields. In the Show Values pane, put Sum of {@TFCount}. In the On Change Of pane, put {@TrueFalse} (and your group field for the bar chart).
HTH,
Carl
User | Count |
---|---|
70 | |
10 | |
10 | |
7 | |
6 | |
6 | |
6 | |
5 | |
5 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.