Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I would like to set up a facility to allow users to access
a MasterOrder, make their changes and save to a directory of their choice, whilst also saving to a central default folder. I need to present the user with an unique Order number, but if the user chooses to Cancel, then I need to reset to the original Order number. Here is what I have so far: In the calling sub: Sub GetNewOrder() Application.ScreenUpdating = False ChDrive "C" ChDir "C:\BofQProject\VlnBofQ\" Workbooks.Open FileName:= _ "C:\BofQProject\VlnBofQ\MasterOrder.xls" End Sub and in the ThisWorkbook module of "MasterOrder.xls": Private Sub Workbook_Open() Dim i As Integer With Workbooks("MasterOrder.xls").Worksheets("Master Order") i = .Range("I3").Value .Range("I3").Value = (i + 1) & " /" End With End Sub A fundamental question, please: Would I be better off creating a userform for this purpose? Regards. --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.548 / Virus Database: 341 - Release Date: 05/12/2003 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
set up a stock ordering system in excel working backwards | Setting up and Configuration of Excel | |||
How do I open an Excel file on XP system, saved on a Vista system | Excel Discussion (Misc queries) | |||
anyone have a food ordering system for a small catering company? | Setting up and Configuration of Excel | |||
excel causing system to be in low system resource | Excel Discussion (Misc queries) | |||
Setting the system clock with excel | Excel Programming |