ONGOING DATABASE ENTRY PROBLEM

APPPRO

Active Member
Joined
Aug 6, 2002
Messages
256
I posted a request to how you can enter multiple entries for a uique item under one template at the same time. The board master gave me a macro that might help. BUT even if it works - it still leaves the problem of "updating and or fixing" the original entry - without going into the database itself. Templates will allow me to do multiple entries, albeit one at a time, but it will only Update the LAST one.

HELP!

apppro@aol.com
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
realy not clear enough! If your previous post contains relevant info, include a link, if it doesn't provide the details here - starting data, problem, expected outcome etc.

paddy
 
Upvote 0
I've come up with the following. It works great to enter several lines of data on Sheet FORM to the next empty row on Sheet MAIN.
But I would like NOT to have to Activate Sheet B inorder to do it.

Actually, I would like to have 2 WorkBooks instead.

Any ideas?

Sub ENTER_TO_DB()
'
' ENTER_TO_DB Macro
' Macro recorded 10/16/02 by ANDREW P. POLSKY
'

'

Range("E1:L4").Copy
Sheets("MAIN").Select
Range("M16").Select
Cells.FindNext(After:=ActiveCell).Activate
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False
Sheets("FORM").Select
Application.CutCopyMode = False
End Sub
This message was edited by APPPRO on 2002-10-16 09:42
 
Upvote 0

Forum statistics

Threads
1,196,476
Messages
6,015,438
Members
441,895
Latest member
Zululander

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top