I have 12 columns named JAN to DEC.
On a report I want to add these values together. I tried placing a textbox out to the side and use this as the control source:
=[JAN]+[FEB]+[MAR]+[APR]+[MAY]+[JUN]+[JUL]+[AUG]+[SEP]+[OCT]+[NOV]+[DEC]
But that just concatenates the values together.
I also tried
=sum([JAN]+[FEB]+[MAR]+[APR]+[MAY]+[JUN]+[JUL]+[AUG]+[SEP]+[OCT]+[NOV]+[DEC])
that didn't work either.
On a report I want to add these values together. I tried placing a textbox out to the side and use this as the control source:
=[JAN]+[FEB]+[MAR]+[APR]+[MAY]+[JUN]+[JUL]+[AUG]+[SEP]+[OCT]+[NOV]+[DEC]
But that just concatenates the values together.
I also tried
=sum([JAN]+[FEB]+[MAR]+[APR]+[MAY]+[JUN]+[JUL]+[AUG]+[SEP]+[OCT]+[NOV]+[DEC])
that didn't work either.