Forum Discussion
MichaelBarrow
8 years agoQrew Cadet
Best way to do this would be to create a formula text field and use that instead of the raw value in grouping for your chart:
If( [YourRawFieldValue] >= 0 and [YourRawFieldValue] <= 30, "0-30",
[YourRawFieldValue] > 30 and [YourRawFieldValue] <= 60, "31-60",
[YourRawFieldValue] > 60 and [YourRawFieldValue] <= 90, "61-90",
"91+"
)
Something like that.
If( [YourRawFieldValue] >= 0 and [YourRawFieldValue] <= 30, "0-30",
[YourRawFieldValue] > 30 and [YourRawFieldValue] <= 60, "31-60",
[YourRawFieldValue] > 60 and [YourRawFieldValue] <= 90, "61-90",
"91+"
)
Something like that.
NenadIlic
8 years agoQrew Assistant Captain
Works perfectly, thank you Michael.