Report doesn't open

endri81

Registered User.
Local time
Today, 08:01
Joined
Jul 5, 2010
Messages
121
Hi I builded a report based on the query as in picture attached.
GjendjaFamiljare is 0 = Single,1=Married,2=Divorced,3=Widowed.
My report works fine for this value but I need to add another 4=N/A where is described data missing(the user does't fill this value)
How to make this happen?
Thx
 

Attachments

  • 1.jpg
    1.jpg
    85.2 KB · Views: 106
Check out the Nz() function. You could have an expression in your query along the lines of;
Code:
Nz([GjendjaFamiljare],4)
 

Users who are viewing this thread

Back
Top Bottom