Round and Nz functions in same expression??

swift

Registered User.
Local time
Today, 12:28
Joined
Mar 12, 2006
Messages
67
I’m trying to use both the Round and Nz functions in the same expression in a query, having problems though. This is what I’ve got so far:

Code:
Texture: (Round([TEX]),Nz([TEX],1.5),1)

Basically I want to round up the TEX value to 1 decimal place, BUT if there is no value in the field then I want it to use 1.5 automatically.

At the moment I’m getting a syntax error – can someone help please?

Cheers
 
Texture: Nz((Round([TEX])),1.5)

JR
 
Texture: Nz((Round([TEX])),1.5)

JR

Thanks JANR, with a little bit of modification to your code I got

Code:
Texture: Nz((Round([TEX],1)),1.5)

which works a treat!

Thanks
 

Users who are viewing this thread

Back
Top Bottom