Home |
Search |
Today's Posts |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi, I'm sure this works. But can't figure out exactly what you are saying as
some of this seems to be in German. I need a simple step by step explanation as I'm new to Excel. This was simple for me to do in Lotus. In lotus you name the macro "0" which means it runs everytime you open the workbook and then the formula/macro is "get the cell " +1, and then "Save the file" and then "Quit" and it all works fine. Is there a simple way to do this is Excel with out writing a novel? "DM Unseen" wrote: Use the following code: 'proc for generating invoice numbers form excel. Requires a standard excel book, not a template, that cannot be set to a shared workbook. Also it needs a custom documentproperty "template" of type yesno. 'This setup will work with multiple users given the basic xl file is accesible to all users. Users should never open the original template as read only. ' procedure voor het automatisch genereren van een invoice nummer vanuit excel ' Uitgangspunt is een gewoon excel bestand dat niet als template gebruikt wordt en ook ' niet gedeeltd wordt. Anders kan ' het laatst gebruikte factuurnummer niet teruggeschreven worden naar de "Template" ' en wordt de factuurtemplate niet beschermd tegen openen door meerdere gebruikers ' Er moet een documenteigenschap "Template" aangemaakt worden die aangeeft of het document een ' template is of een factuur. Private Sub Workbook_Open() Dim lngInvoiceNr As Long Dim strName As String Dim intPos As Integer ' Als bestand een template is, meteen foutmelding en sluiten If Me.Path = "" Then MsgBox "factuur geopend als template, gaarne openen als gewoon bestand", vbCritical, "factuur" Me.Saved = True Me.Close GoTo Exit_here End If On Error GoTo Error1 ' als dit de template is dat een factuur creeren If Me.CustomDocumentProperties("Template") Then 'factuurnummer ophogen With Me.Worksheets(1).Range("M3") .Value = .Value + 1 lngInvoiceNr = .Value End With ' template met nieuw factuurnummer opslaan Application.DisplayAlerts = False Me.Save ' opgeslagen, dus dit bestand is nou geen template meer Me.CustomDocumentProperties("Template") = False Application.DisplayAlerts = True ' bestandsnaam factuurnummer aanmaken strName = Me.Name intPos = InStrRev(strName, ".") If intPos 0 Then strName = Left$(strName, intPos - 1) ' aangeven dat factuur nog niet is opgeslagen Me.Saved = False ' gebruiker vragen om factuur op te slaan While Not Me.Saved Application.Dialogs(xlDialogSaveAs).Show strName & CStr(lngInvoiceNr) Wend End If Exit_he ' exit code kan hier Exit Sub Error1: MsgBox Err.Description GoTo Exit_here End Sub DM Unseen |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Lookup formula for purchased items with same invoice number | Excel Discussion (Misc queries) | |||
invoice toolbar for invoice calcuation and assign number | Excel Discussion (Misc queries) | |||
How do I assign an invoice number using the invoice toolbar? | Excel Worksheet Functions | |||
How do I generate a new invoice number when creating new invoice? | Excel Discussion (Misc queries) | |||
How do I change the invoice number assigned in Invoice template... | Excel Discussion (Misc queries) |