Oct 25, 2004 #1 maha12 Programmer Sep 8, 2002 79 LK Hi I am using VB6 and Access 2000 database. I want to get max number of a text field(PONo). So how do I convert this text field(PONo) to numeric and get max of the text field in SQL language. Tks Maha
Hi I am using VB6 and Access 2000 database. I want to get max number of a text field(PONo). So how do I convert this text field(PONo) to numeric and get max of the text field in SQL language. Tks Maha
Oct 25, 2004 #2 neilharris Programmer Nov 29, 2002 114 GB try Code: select max(val(POno)) from ... Upvote 0 Downvote