Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]() I am new to vba. I am trying to create a macro that once I have entered a date in any cell in column E, it will take me to column c (on the same row) to enter a dollar amount. So far I have created this macro Sub test2() NumberToBeInput = InputBox("Enter Obligated Amount", "Input", 1) ActiveCell.Offset(0, -2).Select ActiveCell.Value = NumberToBeInput End Sub and then on the sheet I have created the following Private Sub Worksheet_Change(ByVal Target As Range) If Not Application.Intersect(Range("F1:F39"), Target) Is Nothing Then If IsDate(Target.Value) And Target.Value 0 Then test2 End If End If End Sub Please help. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
macro to move cursor one cell right | New Users to Excel | |||
macro - how to move to a specific cell and repeat | Excel Worksheet Functions | |||
Macro to move one cell down | Excel Worksheet Functions | |||
macro to move part of cell contents to another cell | Excel Discussion (Misc queries) | |||
move to another cell within a subtotal report within a macro | Excel Worksheet Functions |