Dear Experts,
I have a field which has some NULL values. When I sort this field ASC, (Let's say "fldA"), NULL values show up at the top.
I understand I can make them listed at the bottom by using query - fldA Is Null DESC, fldA ASC.
Is there anyway to do this by using Form's "OrderBy" property?
I tried this VBA but didn't work.
Form.OrderBy = "fldA Is Null DESC, fldA ASC"
Form.OrderbyOn = TRUE
Any advise will be appreciated.
Thank you.
I have a field which has some NULL values. When I sort this field ASC, (Let's say "fldA"), NULL values show up at the top.
I understand I can make them listed at the bottom by using query - fldA Is Null DESC, fldA ASC.
Is there anyway to do this by using Form's "OrderBy" property?
I tried this VBA but didn't work.
Form.OrderBy = "fldA Is Null DESC, fldA ASC"
Form.OrderbyOn = TRUE
Any advise will be appreciated.
Thank you.