Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Using Excel 2007 - that needs to be compatible with 2003. The problem that I'm having working with appearance. With the macro list below - I'm still haiving problems with copies cells being outlined - when this isn't the desired result. The desire result is to perform the copy and not have any ranges outlined and have the cursor on the effective date. Just as if they simply moved the cursor from name to date (which will occur the majority of the time) There are four input criteria Product name Effective date State and Form number The user can either enter the product name or the form number and the program needs to automatically change the other. Effective Date and State are conditional inputs (depending on the form number) Right now the code is as follows Sub Worksheet_Change(ByVal Target As Range) Dim dur As Integer Dim Inpdate As Date Inpdate = Range("InpEDate").Value dur = Year(Now()) - Year(Inpdate) If Month(Now()) < Month(Inpdate) Then dur = dur - 1 Else If Month(Now()) = Month(Inpdate) And Day(Now()) < Day(Inpdate) Then dur = dur - 1 End If End If Application.EnableEvents = False 'Application.ScreenUpdating = False If Target.Address = Range("InpICForm").Address Then Range("c17").Copy Range("InpProd").PasteSpecial xlPasteValues ' Application.CutCopyMode = False ' Range("InpEDate").Select End If If Target.Address = Range("InpProd").Address Then Range("c18").Copy Range("InpICForm").PasteSpecial xlPasteValues ' Application.CutCopyMode = False ' Range("InpEDate").Select End If Application.EnableEvents = True Application.ScreenUpdating = True Application.CutCopyMode = False .. .. .. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Limiting selection in a cell AND linking that selection to a list | Excel Discussion (Misc queries) | |||
Change InputBox Range Selection to Column Letter Selection | Excel Programming | |||
Copy Selection - Paste Selection - Delete Selection | Excel Programming | |||
Copy Selection - Transpose Selection - Delete Selection | Excel Discussion (Misc queries) | |||
Combo Box selection only shows bound column info after selection made. | Excel Programming |