Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is there a way to hide comment markers? If so, can they be hidden based
on cell values or formulas? I created a worksheet where some cells are hidden until a specified second cell contains a given value. However, while cell values are hidden the comment marker gives away the fact that the cell may contain data or serves some special function. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
From the Excel help file:
1.. On the Tools menu, click Options, and then click the View tab. 2.. Do one of the following: To hide both comments and indicators throughout the workbook, click None under Comments. "Paul" wrote in message ... Is there a way to hide comment markers? If so, can they be hidden based on cell values or formulas? I created a worksheet where some cells are hidden until a specified second cell contains a given value. However, while cell values are hidden the comment marker gives away the fact that the cell may contain data or serves some special function. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
From the VBA help file:
Application.DisplayCommentIndicator = xlNoIndicator "Paul" wrote in message ... Is there a way to hide comment markers? If so, can they be hidden based on cell values or formulas? I created a worksheet where some cells are hidden until a specified second cell contains a given value. However, while cell values are hidden the comment marker gives away the fact that the cell may contain data or serves some special function. |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks for the info JLG. However, your solution is an all or nothing option.
I would like the comments to show when the cell has focus but hide the indicators. Any ideas? "JLGWhiz" wrote: From the VBA help file: Application.DisplayCommentIndicator = xlNoIndicator "Paul" wrote in message ... Is there a way to hide comment markers? If so, can they be hidden based on cell values or formulas? I created a worksheet where some cells are hidden until a specified second cell contains a given value. However, while cell values are hidden the comment marker gives away the fact that the cell may contain data or serves some special function. |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hey, Paul,
Instead of Comments, sometimes I use the Input Message of Data Validation. This way, the 'Comment' shows up only when the cell is selected. There are two ways to control if the user sees the 'comment', also. First, you can lock the cell Range("A1").Locked = True so the user can't get there to see it. (of course, the workbook must be protected) Second, you can set the validation to display (or not display) the Input Message Range("A1").Validation.ShowInput = True (False) -- HTH, Brad E. "Paul" wrote: Is there a way to hide comment markers? If so, can they be hidden based on cell values or formulas? I created a worksheet where some cells are hidden until a specified second cell contains a given value. However, while cell values are hidden the comment marker gives away the fact that the cell may contain data or serves some special function. |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks Brad!
Although the message area is too limited for some comments this is very helpful! This is just what I need. Thanks again. "Brad E." wrote: Hey, Paul, Instead of Comments, sometimes I use the Input Message of Data Validation. This way, the 'Comment' shows up only when the cell is selected. There are two ways to control if the user sees the 'comment', also. First, you can lock the cell Range("A1").Locked = True so the user can't get there to see it. (of course, the workbook must be protected) Second, you can set the validation to display (or not display) the Input Message Range("A1").Validation.ShowInput = True (False) -- HTH, Brad E. "Paul" wrote: Is there a way to hide comment markers? If so, can they be hidden based on cell values or formulas? I created a worksheet where some cells are hidden until a specified second cell contains a given value. However, while cell values are hidden the comment marker gives away the fact that the cell may contain data or serves some special function. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
conditionally hiding rows | Excel Discussion (Misc queries) | |||
Conditionally Hiding Rows | Excel Discussion (Misc queries) | |||
Hiding Rows Conditionally | Excel Discussion (Misc queries) | |||
Hiding Rows in EXCEL (Conditionally) | Excel Programming | |||
Conditionally Hiding Rows | Excel Programming |