Access Function | Database Journal

Access Function

Nov 24, 2012
1 minute read

>>Script Language and Platform: Access, VBA
Want to use this function in PHP/MySQL but new to PHP/MySQL. It works by taking the select member code description and the last assigned number and format as CON-00001 once the focus in lost after selecting the member description from dropdown list on the form.

Author: lrhrose

	Option Compare Database


Function newMemCode(pMemID) As String

 Dim dbs As Database

 Dim rst As DAO.Recordset

 Dim L_newMemCode As String

 
 On Error GoTo Err_Execute

 Set dbs = CurrentDb()

 
 Set rst = dbs.OpenRecordset("Select last_assigned_nbr From Codes Where code_descr = '" & pMemID & "'")

 
 If rst.EOF = True Then
    dbs.Execute "Insert Into Codes(code_descr, last_assigned_nbr) Values('" & pMemID & "', 1)", dbFailOnError

    
    L_newMemCode = pMemID & "-" & Format(1, "00000")

Else

    L_newMemCode = pMemID & "-" & Format(rst("last_assigned_nbr") + 1, "00000")

    
    dbs.Execute "Update Codes Set last_assigned_nbr = " & rst("last_assigned_nbr") + 1 & " Where code_descr = '" & pMemID & "'", dbFailOnError

End If

 
 rst.Close

 Set rst = Nothing

 Set dbs = Nothing

 
 newMemCode = L_newMemCode

 
 Exit Function

 
Err_Execute:

    newMemCode = ""

    MsgBox "An error occurred while trying to determine the next memberCode to assign."


End Function

Disclaimer: We hope that the information on these script pages is valuable to you. Your use of the information contained in these pages, however, is at your sole risk. All information on these pages is provided “as -is”, without any warranty, whether express or implied, of its accuracy, completeness, or fitness for a particular purpose… Disclaimer Continued

Back to Database Journal Home

Database Journal Logo

DatabaseJournal.com publishes relevant, up-to-date and pragmatic articles on the use of database hardware and management tools and serves as a forum for professional knowledge about proprietary, open source and cloud-based databases--foundational technology for all IT systems. We publish insightful articles about new products, best practices and trends; readers help each other out on various database questions and problems. Database management systems (DBMS) and database security processes are also key areas of focus at DatabaseJournal.com.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.