Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7
Default Pop Up Message = Cell


Having tried to protect a cell that has a formula and
also having a comment attached to the cell saying "If you
want to type in this cell go to Sheet1 cell..Etc and type
there..." Does anyone know some code so that...

If someone tries to type in a cell then it produces a pop
up message?
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 135
Default Pop Up Message = Cell

Wayne try this in the sheet code

Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
If Target.Address = "$A$1" Then
If ActiveCell.HasFormula Then
MsgBox ("If you want to type in this cell go to Sheet1 cell..")
Else
End If
End If
End Sub

--
Paul B
Always backup your data before trying something new
Please post any response to the newsgroups so others can benefit from it
Feedback on answers is always appreciated!
Using Excel 2000 & 97
** remove news from my email address to reply by email **
"Wayne" wrote in message
...

Having tried to protect a cell that has a formula and
also having a comment attached to the cell saying "If you
want to type in this cell go to Sheet1 cell..Etc and type
there..." Does anyone know some code so that...

If someone tries to type in a cell then it produces a pop
up message?



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Need to get cell input message be attached to cell R Excel Discussion (Misc queries) 3 December 21st 07 03:50 PM
#VALUE message in cell JohnE Excel Worksheet Functions 4 June 29th 07 08:04 PM
how to pop up a message based on a cell value?? paul Excel Discussion (Misc queries) 4 July 9th 06 03:29 AM
Yellow pop-up message in cell Brw Excel Discussion (Misc queries) 2 December 21st 05 03:02 PM
I keep getting the message "too many different cell formats" Anky Excel Worksheet Functions 1 June 30th 05 04:03 PM


All times are GMT +1. The time now is 03:41 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"