Home |
Search |
Today's Posts |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
use the sheet's change method ....right click the sheet tab and select View
Code from the pop-up menu Option Explicit Private Sub Worksheet_Change(ByVal Target As Range) If Target.Address = Range("a2").Address Then If Range("a1") = "" Then MsgBox "A1 is empty" Application.EnableEvents = False Target.Value = "" Application.EnableEvents = True End If End If End Sub "Link" wrote in message ... In a worksheet where you have to fill in information what formula to use if you want to make sure (example cell A1 is filled in before A2) In other words they if A1 is not filled in you cant move to A2. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how do I populate a cell when entering information into another? | Excel Discussion (Misc queries) | |||
Automatic entering of information from another worksheet if given | Excel Worksheet Functions | |||
Entering Information Into Another Column | Excel Discussion (Misc queries) | |||
Entering information from 1 worksheet to another, if criteria is m | Excel Discussion (Misc queries) | |||
Entering Excel information into MS Word | Excel Discussion (Misc queries) |