View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Harald Staff[_4_] Harald Staff[_4_] is offline
external usenet poster
 
Posts: 70
Default Work Order Template Numbering Macro

Hi Christopher

I'm not familiar with that template. But in general this is a very simple macro:

Sub NextNumber()
With Sheets("Sheet1").Range("C4") 'change to fit
..Value = .Value + 1
End With
End Sub

Now how to run it when may be another thing. If you provide the address where you found
the template then I'll try to look into it.
--
HTH. Best wishes Harald
Excel MVP

Followup to newsgroup only please.

"Christopher Armijo" wrote in message
...
Good Afternoon All,
I downloaded the Work Order Template and noticed that
the work order number (auto number) does not work. When I
change the field it indicates that there should be a macro
to do this. Am I not receiving this macro because of a
firewall or is this something I can find somewhere else?
Thanks for the help!

Christopher