G Guest Apr 22, 2004 #1 I am making a report and need only the records that contain odd values in a field of integers. Is there a function or somthing that I can use?
I am making a report and need only the records that contain odd values in a field of integers. Is there a function or somthing that I can use?
F fredg Apr 22, 2004 #2 I am making a report and need only the records that contain odd values in a field of integers. Is there a function or somthing that I can use? Click to expand... Sure. If [SomeField] Mod 2 = 0 Then ' it's Even Else ' It's Odd End If
I am making a report and need only the records that contain odd values in a field of integers. Is there a function or somthing that I can use? Click to expand... Sure. If [SomeField] Mod 2 = 0 Then ' it's Even Else ' It's Odd End If