Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default Making Cell protection visable (like Lotus does with different col

In Lotus the cells that are unprotected show the font in blue (so you can see
where you've lifted security). This is only in the screen view (the font
still prints normal/black).
I can't find that Excel has any way to change the view features on
unprotected cells.
Anyone know how to get this feature (or something like it) in Excel? I
really miss it and often go back to my old version of Lotus in cases where I
really need this feature.

Thanks!
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 434
Default Making Cell protection visable (like Lotus does with different col

hi, PubsGirl !

In Lotus the cells that are unprotected show the font in blue (so you can see where you've lifted security).
This is only in the screen view (the font still prints normal/black).
I can't find that Excel has any way to change the view features on unprotected cells.
Anyone know how to get this feature (or something like it) in Excel?
I really miss it and often go back to my old version of Lotus in cases where I really need this feature.


I'm sure this is not *as easy* as in 1-2-3, but [I guess] you might want to give a try w/ following 'steps'...
[assuming it is for Sheet1 and cell 'A1' can be used as 'temp' cell for _beforeprint workbook event]
- you could also give a conditional 'blank' format or custom numeric-format to 'A1' i.e. - ;;;

1) select 'A1' cell and define a name [insert name define] i.e. Unlocked
use this formula: - =not(get.cell(14+0*now(),!a1))

2) select entire sheet' cells and use the following formual in conditional format:
=and(Unlocked,$a$1)
- apply formats as you wish/need/prefer/...

3) copy/paste the following code in ThisWorkbook code module:
Private Sub Workbook_BeforePrint(Cancel As Boolean)
Worksheets("sheet1").Range("a1") = 0
Application.OnTime Now, "RestoreCondition"
End Sub

4) copypaste the following code in a standard code module:
Option Private Module
Sub RestoreCondition()
Worksheets("sheet1").Range("a1").ClearContents
End Sub

hth,
hector.


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default Making Cell protection visable (like Lotus does with different

Thanks, that may be helpful. But I'm not sure it is worth that much time.
It sure is a lot faster to just use Lotus, which by the way, can do lots of
other things more efficiently than Excel too.

Thanks for your help!

"Héctor Miguel" wrote:

hi, PubsGirl !

In Lotus the cells that are unprotected show the font in blue (so you can see where you've lifted security).
This is only in the screen view (the font still prints normal/black).
I can't find that Excel has any way to change the view features on unprotected cells.
Anyone know how to get this feature (or something like it) in Excel?
I really miss it and often go back to my old version of Lotus in cases where I really need this feature.


I'm sure this is not *as easy* as in 1-2-3, but [I guess] you might want to give a try w/ following 'steps'...
[assuming it is for Sheet1 and cell 'A1' can be used as 'temp' cell for _beforeprint workbook event]
- you could also give a conditional 'blank' format or custom numeric-format to 'A1' i.e. - ;;;

1) select 'A1' cell and define a name [insert name define] i.e. Unlocked
use this formula: - =not(get.cell(14+0*now(),!a1))

2) select entire sheet' cells and use the following formual in conditional format:
=and(Unlocked,$a$1)
- apply formats as you wish/need/prefer/...

3) copy/paste the following code in ThisWorkbook code module:
Private Sub Workbook_BeforePrint(Cancel As Boolean)
Worksheets("sheet1").Range("a1") = 0
Application.OnTime Now, "RestoreCondition"
End Sub

4) copypaste the following code in a standard code module:
Option Private Module
Sub RestoreCondition()
Worksheets("sheet1").Range("a1").ClearContents
End Sub

hth,
hector.



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,231
Default Making Cell protection visable (like Lotus does with different col

PubsGirl wrote...
In Lotus the cells that are unprotected show the font in blue (so
you can see where you've lifted security). This is only in the
screen view (the font still prints normal/black).


Actually this only worked in 123 when you hadn't changed font
attributes. If you had, /RU wouldn't change font color.

I can't find that Excel has any way to change the view features on
unprotected cells.
Anyone know how to get this feature (or something like it) in Excel?
I really miss it and often go back to my old version of Lotus in
cases where I really need this feature.


The simplest way to do this in Excel is to create a custom style. Run
the menu command Format Style to display the Style dialog. Enter
Unprotected as the style name. Uncheck Number, Alignment, Border and
Pattern checkboxes. Click on the Modify... button to display the
Format Cells dialog. Click on the Font tab and change the font color
to Blue. Click on the Protection tab and uncheck the Locked checkbox.
Click on the OK button in the Format Cells dialog, then click on the
OK button in the Styles dialog.

The limitation on this approach is that the typeface, point size and
other font attributes are included in the Unprotected style. For this
reason, I've found it easier to set the cell background to light blue
rather than the font color to blue.

Another limitation: font color or cell background color will appear in
printout. Unless you want to use a BeforePrint event handler to change
printout appearance from on-screen appearance, you're stuck with
WYSIWYG in Excel.

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default Making Cell protection visable (like Lotus does with different

Thanks for your help. I guess there just isn't an easy solution. Once
again I find that Microsoft makes everything more labor intensive that it
needs to be.

"Harlan Grove" wrote:

PubsGirl wrote...
In Lotus the cells that are unprotected show the font in blue (so
you can see where you've lifted security). This is only in the
screen view (the font still prints normal/black).


Actually this only worked in 123 when you hadn't changed font
attributes. If you had, /RU wouldn't change font color.

I can't find that Excel has any way to change the view features on
unprotected cells.
Anyone know how to get this feature (or something like it) in Excel?
I really miss it and often go back to my old version of Lotus in
cases where I really need this feature.


The simplest way to do this in Excel is to create a custom style. Run
the menu command Format Style to display the Style dialog. Enter
Unprotected as the style name. Uncheck Number, Alignment, Border and
Pattern checkboxes. Click on the Modify... button to display the
Format Cells dialog. Click on the Font tab and change the font color
to Blue. Click on the Protection tab and uncheck the Locked checkbox.
Click on the OK button in the Format Cells dialog, then click on the
OK button in the Styles dialog.

The limitation on this approach is that the typeface, point size and
other font attributes are included in the Unprotected style. For this
reason, I've found it easier to set the cell background to light blue
rather than the font color to blue.

Another limitation: font color or cell background color will appear in
printout. Unless you want to use a BeforePrint event handler to change
printout appearance from on-screen appearance, you're stuck with
WYSIWYG in Excel.




  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 35,218
Default Making Cell protection visable (like Lotus does with different col

If you're not using Format|conditional formatting, you could try using that:

Select the range you want shaded (all the cells on the sheet????)

I chose A1:G99 in my sample
and with A1 the activecell
format|conditional|formatting
formula is:
=(CELL("Protect",A1)=0)
and give it a nice shade.

If you to hide that shading sometimes, you could pick out a cell and include
that in the conditional formatting formula. I used X1.

Same rules (A1 the active cell of the selection):
formula is:
=AND((CELL("Protect",A1)=0),$X$1<"")

So when I put anything in X1, I see the shading. If I want to print (say)
without the shading, I can just clear X1.



PubsGirl wrote:

In Lotus the cells that are unprotected show the font in blue (so you can see
where you've lifted security). This is only in the screen view (the font
still prints normal/black).
I can't find that Excel has any way to change the view features on
unprotected cells.
Anyone know how to get this feature (or something like it) in Excel? I
really miss it and often go back to my old version of Lotus in cases where I
really need this feature.

Thanks!


--

Dave Peterson
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
How do I repeat a character in a cell in Excel as / did in Lotus? SoSoPro Excel Discussion (Misc queries) 2 March 31st 07 04:29 AM
Cell Protection vs. Worksheet Protection kmwhitt Excel Discussion (Misc queries) 4 September 24th 06 02:37 AM
A cell visable on a graphic campbell Excel Discussion (Misc queries) 2 August 17th 06 11:41 PM
Lotus had buttons (icons) for first & last cell does excell? Marty New Users to Excel 5 July 8th 06 05:39 PM
auto enter cell info like lotus Zed Setting up and Configuration of Excel 1 March 11th 05 07:53 AM


All times are GMT +1. The time now is 05:52 AM.

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"