They should work ok. There are some that have been killed.
If you find one that doesn't, post here with details and we will help.
--
Don Guillett
Microsoft MVP Excel
SalesAid Software
- Show quoted text -
The macro is quite simple. purpose & operation:
1. Highlight row from database tab you wish to print.
2 Click IR buttom and form will print
(it copies highlighted row and pastes special into row 1)
Sub IRForm()
'
' IRForm Macro
' Print an Install and Removal form
' ActiveSheet.Paste
' Keyboard Shortcut: Ctrl+i
'
Selection.Copy
Range("A1").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone,
SkipBlanks _
:=False, Transpose:=False
Sheets("IR Form").Select
Application.CutCopyMode = False
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True
Sheets("Database").Select
Selection.ClearContents
Range("E2:O2").Select
End Sub
Works in 2003 but NOT in 2007
Anything you can provide is most appreciated.
Ron