Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
hey...
what code would i use where to get a "A" in cell a111 on sheet1 when a user change any cell on sheet2? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
What is causing the data to change - manual changes? then you can use the
Change event in Sheet2. Right click on Sheet2 tab and select view code. In the code module put in code like Private Sub Worksheet_Change(ByVal Target As Range) worksheets("Sheet1").Range("A111").Value = "A" End Sub If you just want to know if the workbook needs to be saved, looked at the ThisWorkbook.Saved property. -- Regasrds, Tom Ogilvy "pswanie" wrote: hey... what code would i use where to get a "A" in cell a111 on sheet1 when a user change any cell on sheet2? |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
yes it changes manualy. its a inventry and when the authorised user changes
a menu item it needs to put a "a" in sheet1 a111. then next time the user open the workbook it will email and download it to all other users using the inventry. to i will use Private Sub Worksheet_Change(ByVal Target As Range) worksheets("Sheet1").Range("A111").Value = "A" End Sub thanx... phillip "Tom Ogilvy" wrote: What is causing the data to change - manual changes? then you can use the Change event in Sheet2. Right click on Sheet2 tab and select view code. In the code module put in code like Private Sub Worksheet_Change(ByVal Target As Range) worksheets("Sheet1").Range("A111").Value = "A" End Sub If you just want to know if the workbook needs to be saved, looked at the ThisWorkbook.Saved property. -- Regasrds, Tom Ogilvy "pswanie" wrote: hey... what code would i use where to get a "A" in cell a111 on sheet1 when a user change any cell on sheet2? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how do i convert this to a formula +"sheet1!J"&(sheet2!A30)-1 | Excel Worksheet Functions | |||
how do copy "sheet1!A1+1 in sheet2 to sheet 3 and get "sheet2!A1+ | Excel Discussion (Misc queries) | |||
Cut rows if contains "Done" from sheet1, and paste onto next available row in sheet2 in the same workbook. | Excel Programming | |||
use variable in Workbooks("book1").Worksheets("sheet1").Range("a1" | Excel Programming | |||
Sheets("sheet1").Range command between workbooks | Excel Programming |