Hi All,
I have a column graph that is getting data from a collection.
The collection, called ColTotals, has 2 columns, one called "Qtr" the other called "Total"
Every quarter for the year has a corresponding total.
I'm displaying the data in a Column chart, by assigning colTotals to the items property of the chart. It looks good.
But the text values at the top of each column have many decimal points and are not in $.
I read this Link and changed my Items formula to this
AddColumns( colTotals,"USD",Text(colTotals.Total,"[$-en-US]$ #,###","en-US"))
I'm confused as I still get an error that indicates "colTotals.Total" should be a text or a number, but in it definitely has a number in it.
Any suggestions on whats wrong?