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.
- NenadIlic8 years agoQrew Assistant CaptainWorks perfectly, thank you Michael.
- MichaelBarrow8 years agoQrew CadetExcellent! In general, QB makes it fantastically easy to harness formula fields to do all sorts of things that on other platforms would be done differently (but harder). The trick is keeping track of all those formula fields and what they do and how they relate to each other. Computer Science ... sigh ....