Many functions become unavailable when sheets are protected.
You can enter a SUM function in an unlocked cell, just can't use the Autosum.
For functions like Bold and other formatting make sure when you protect the
sheet that you have Allow users to "Format cells" enabled.
Gord Dibben MS Excel MVP
Thanks for the tip on checking formating cells - the bold works. But the
Autosum icon is really what I need to work - people who are not too computer
literate will be using this spreadsheet. I know they can click on a cell,
select fx on the formula bar, hightlight their columns, etc., but am afraid
it will be too complicated for them.
> Many functions become unavailable when sheets are protected.
>
[quoted text clipped - 12 lines]
> >
> >Thank you for any assistance.
Gord Dibben - 25 Mar 2008 19:39 GMT
How about you give them a button with a macro assigned?
Sub Sum_Range()
Set rng = Selection
Set rng1 = rng.Offset(rng.Rows.Count, 0).Resize(1, 1)
rng1.Formula = "=Sum(" & rng.Address & ")"
End Sub
Gord
>Thanks for the tip on checking formating cells - the bold works. But the
>Autosum icon is really what I need to work - people who are not too computer
[quoted text clipped - 18 lines]
>> >
>> >Thank you for any assistance.