ROUNDING

N

Nanette

I'm tried using the following in a report:

Round(([TULCBBS]+[TFLCBBS)][,1])

=Round(([TULCBBS]+[TFLCBBS)][,1])

Round([TULCBBS]+[TFLCBBS][,1])

as well as many other renditions.

I'm trying to add two fields and then round them.
What is the correct syntax for this?
 
D

Damian S

Hi Nanette,

You need to get rid of the square brackets around the , 1, and swap the
parenthesis and square bracket beside TFLCBBS like this:

round(([TULCBBS]+[TFLCBBS]),1)

Damian.
 
N

Nanette

Thanks Damian,

I actually used Access's help to get the [,1]. Sometimes the Access help is
far from correct!

Damian S said:
Hi Nanette,

You need to get rid of the square brackets around the , 1, and swap the
parenthesis and square bracket beside TFLCBBS like this:

round(([TULCBBS]+[TFLCBBS]),1)

Damian.

Nanette said:
I'm tried using the following in a report:

Round(([TULCBBS]+[TFLCBBS)][,1])

=Round(([TULCBBS]+[TFLCBBS)][,1])

Round([TULCBBS]+[TFLCBBS][,1])

as well as many other renditions.

I'm trying to add two fields and then round them.
What is the correct syntax for this?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top