HomeGrowth
Technical User
I have these records
DocNumber, VersionNumber(text field)
A,1.0
B,1.0
B,2.0
c,9.0
c,10.0
The result that i want is
A,1.0
B,2.0
c,10.0
In query, I convert the VersionNumber from text to number using CInt(VersionNumber). Now I want to find out which is the Max. In define the Totals, DocNumber is Group By and VersionNumber is Max. Access returned an error stating 'Data type mismatch in criteria expression'.
DocNumber, VersionNumber(text field)
A,1.0
B,1.0
B,2.0
c,9.0
c,10.0
The result that i want is
A,1.0
B,2.0
c,10.0
In query, I convert the VersionNumber from text to number using CInt(VersionNumber). Now I want to find out which is the Max. In define the Totals, DocNumber is Group By and VersionNumber is Max. Access returned an error stating 'Data type mismatch in criteria expression'.