Hello,
I am trying to query data from the table with max numeric value of a field.
Dmax is working fine for a set of records and its filtering the one with the highest numeric value.
But there are cases where there are only one record in the table.
Its not showing that one record.
Example:
TableName: Order
RevisedNumber Name Weekending 1 Adam 2/1/2019 2 Pat 2/1/2019 3 Fiet 2/1/2019
In this case:
Dmax("[RevisedNumber]", "Order")
Works
Displays the record
3 Fiet 2/1/2019
But in this case
RevisedNumber Name Weekending 1 Julio 2/8/2019
DMAX functions doesn't work
It shows no record.
I am not sure because there is only one record with that criteria.
Can anyone help me to solve this.