PC Review


Reply
Thread Tools Rate Thread

Delete contents unlocked cells

 
 
RobN
Guest
Posts: n/a
 
      11th Dec 2007
Could someone please provide me with some code to clear contents of all
unlocked cells in a worksheet?

Rob


 
Reply With Quote
 
 
 
 
Stefi
Guest
Posts: n/a
 
      11th Dec 2007
Try this:
Sub delunlocked()
Dim aktter As Range, acell As Range
Set aktter = Selection.CurrentRegion
For Each acell In aktter
If Not acell.Locked Then acell.ClearContents
Next acell
End Sub

Regards,
Stefi


„RobN” ezt *rta:

> Could someone please provide me with some code to clear contents of all
> unlocked cells in a worksheet?
>
> Rob
>
>
>

 
Reply With Quote
 
RobN
Guest
Posts: n/a
 
      11th Dec 2007
Thanks Stefi,

But this comes up with a runtime error 1004.

Do I need to select a range or something or will this do the whole active
sheet?

Rob

"Stefi" <(E-Mail Removed)> wrote in message
newsE0EA4CB-85FA-4C78-A66A-(E-Mail Removed)...
> Try this:
> Sub delunlocked()
> Dim aktter As Range, acell As Range
> Set aktter = Selection.CurrentRegion
> For Each acell In aktter
> If Not acell.Locked Then acell.ClearContents
> Next acell
> End Sub
>
> Regards,
> Stefi
>
>
> "RobN" ezt rta:
>
>> Could someone please provide me with some code to clear contents of all
>> unlocked cells in a worksheet?
>>
>> Rob
>>
>>
>>



 
Reply With Quote
 
Stefi
Guest
Posts: n/a
 
      11th Dec 2007
You didn't post which line causes the error! Anyway try this version, it
will work on the whole active sheet:

Sub delunlocked()
Dim aktter As Range, acell As Range
Cells.Find(What:="*", _
After:=Range("A1"), _
LookAt:=xlPart, _
LookIn:=xlValues, _
SearchOrder:=xlByRows, _
SearchDirection:=xlPrevious, _
MatchCase:=False).Activate
Set aktter = Range("A1", ActiveCell)
For Each acell In aktter
If Not acell.Locked Then acell.ClearContents
Next acell
End Sub

Which Excel version do you use?

Stefi


„RobN” ezt *rta:

> Thanks Stefi,
>
> But this comes up with a runtime error 1004.
>
> Do I need to select a range or something or will this do the whole active
> sheet?
>
> Rob
>
> "Stefi" <(E-Mail Removed)> wrote in message
> newsE0EA4CB-85FA-4C78-A66A-(E-Mail Removed)...
> > Try this:
> > Sub delunlocked()
> > Dim aktter As Range, acell As Range
> > Set aktter = Selection.CurrentRegion
> > For Each acell In aktter
> > If Not acell.Locked Then acell.ClearContents
> > Next acell
> > End Sub
> >
> > Regards,
> > Stefi
> >
> >
> > "RobN" ezt *rta:
> >
> >> Could someone please provide me with some code to clear contents of all
> >> unlocked cells in a worksheet?
> >>
> >> Rob
> >>
> >>
> >>

>
>
>

 
Reply With Quote
 
RobN
Guest
Posts: n/a
 
      11th Dec 2007
Thanks Stefi,
That worked a treat!
I use vs 2007 (and 2002 for my important files, he says cynically!)

BTW, what made you call one of the dims aktter?

Rob

"Stefi" <(E-Mail Removed)> wrote in message
news:06477886-AD14-42A4-B7DB-(E-Mail Removed)...
> You didn't post which line causes the error! Anyway try this version, it
> will work on the whole active sheet:
>
> Sub delunlocked()
> Dim aktter As Range, acell As Range
> Cells.Find(What:="*", _
> After:=Range("A1"), _
> LookAt:=xlPart, _
> LookIn:=xlValues, _
> SearchOrder:=xlByRows, _
> SearchDirection:=xlPrevious, _
> MatchCase:=False).Activate
> Set aktter = Range("A1", ActiveCell)
> For Each acell In aktter
> If Not acell.Locked Then acell.ClearContents
> Next acell
> End Sub
>
> Which Excel version do you use?
>
> Stefi
>
>
> "RobN" ezt rta:
>
>> Thanks Stefi,
>>
>> But this comes up with a runtime error 1004.
>>
>> Do I need to select a range or something or will this do the whole active
>> sheet?
>>
>> Rob
>>
>> "Stefi" <(E-Mail Removed)> wrote in message
>> newsE0EA4CB-85FA-4C78-A66A-(E-Mail Removed)...
>> > Try this:
>> > Sub delunlocked()
>> > Dim aktter As Range, acell As Range
>> > Set aktter = Selection.CurrentRegion
>> > For Each acell In aktter
>> > If Not acell.Locked Then acell.ClearContents
>> > Next acell
>> > End Sub
>> >
>> > Regards,
>> > Stefi
>> >
>> >
>> > "RobN" ezt rta:
>> >
>> >> Could someone please provide me with some code to clear contents of
>> >> all
>> >> unlocked cells in a worksheet?
>> >>
>> >> Rob
>> >>
>> >>
>> >>

>>
>>
>>



 
Reply With Quote
 
Stefi
Guest
Posts: n/a
 
      11th Dec 2007
You are welcome! Thanks for the feedback!
Sorry for "aktter", I forgot that it means nothing to non-Hungarian
speakers, it stands for "aktuális terület" which means currently used range.

Stefi

„RobN” ezt *rta:

> Thanks Stefi,
> That worked a treat!
> I use vs 2007 (and 2002 for my important files, he says cynically!)
>
> BTW, what made you call one of the dims aktter?
>
> Rob
>
> "Stefi" <(E-Mail Removed)> wrote in message
> news:06477886-AD14-42A4-B7DB-(E-Mail Removed)...
> > You didn't post which line causes the error! Anyway try this version, it
> > will work on the whole active sheet:
> >
> > Sub delunlocked()
> > Dim aktter As Range, acell As Range
> > Cells.Find(What:="*", _
> > After:=Range("A1"), _
> > LookAt:=xlPart, _
> > LookIn:=xlValues, _
> > SearchOrder:=xlByRows, _
> > SearchDirection:=xlPrevious, _
> > MatchCase:=False).Activate
> > Set aktter = Range("A1", ActiveCell)
> > For Each acell In aktter
> > If Not acell.Locked Then acell.ClearContents
> > Next acell
> > End Sub
> >
> > Which Excel version do you use?
> >
> > Stefi
> >
> >
> > "RobN" ezt *rta:
> >
> >> Thanks Stefi,
> >>
> >> But this comes up with a runtime error 1004.
> >>
> >> Do I need to select a range or something or will this do the whole active
> >> sheet?
> >>
> >> Rob
> >>
> >> "Stefi" <(E-Mail Removed)> wrote in message
> >> newsE0EA4CB-85FA-4C78-A66A-(E-Mail Removed)...
> >> > Try this:
> >> > Sub delunlocked()
> >> > Dim aktter As Range, acell As Range
> >> > Set aktter = Selection.CurrentRegion
> >> > For Each acell In aktter
> >> > If Not acell.Locked Then acell.ClearContents
> >> > Next acell
> >> > End Sub
> >> >
> >> > Regards,
> >> > Stefi
> >> >
> >> >
> >> > "RobN" ezt *rta:
> >> >
> >> >> Could someone please provide me with some code to clear contents of
> >> >> all
> >> >> unlocked cells in a worksheet?
> >> >>
> >> >> Rob
> >> >>
> >> >>
> >> >>
> >>
> >>
> >>

>
>
>

 
Reply With Quote
 
Stefi
Guest
Posts: n/a
 
      11th Dec 2007
I found a simpler and shorter code (without needing "aktter"):

Sub delunlocked()
Dim acell As Range
For Each acell In ActiveSheet.UsedRange
If Not acell.Locked Then acell.ClearContents
Next acell
End Sub

Stefi

„Stefi” ezt *rta:

> You are welcome! Thanks for the feedback!
> Sorry for "aktter", I forgot that it means nothing to non-Hungarian
> speakers, it stands for "aktuális terület" which means currently used range.
>
> Stefi
>
> „RobN” ezt *rta:
>
> > Thanks Stefi,
> > That worked a treat!
> > I use vs 2007 (and 2002 for my important files, he says cynically!)
> >
> > BTW, what made you call one of the dims aktter?
> >
> > Rob
> >
> > "Stefi" <(E-Mail Removed)> wrote in message
> > news:06477886-AD14-42A4-B7DB-(E-Mail Removed)...
> > > You didn't post which line causes the error! Anyway try this version, it
> > > will work on the whole active sheet:
> > >
> > > Sub delunlocked()
> > > Dim aktter As Range, acell As Range
> > > Cells.Find(What:="*", _
> > > After:=Range("A1"), _
> > > LookAt:=xlPart, _
> > > LookIn:=xlValues, _
> > > SearchOrder:=xlByRows, _
> > > SearchDirection:=xlPrevious, _
> > > MatchCase:=False).Activate
> > > Set aktter = Range("A1", ActiveCell)
> > > For Each acell In aktter
> > > If Not acell.Locked Then acell.ClearContents
> > > Next acell
> > > End Sub
> > >
> > > Which Excel version do you use?
> > >
> > > Stefi
> > >
> > >
> > > "RobN" ezt *rta:
> > >
> > >> Thanks Stefi,
> > >>
> > >> But this comes up with a runtime error 1004.
> > >>
> > >> Do I need to select a range or something or will this do the whole active
> > >> sheet?
> > >>
> > >> Rob
> > >>
> > >> "Stefi" <(E-Mail Removed)> wrote in message
> > >> newsE0EA4CB-85FA-4C78-A66A-(E-Mail Removed)...
> > >> > Try this:
> > >> > Sub delunlocked()
> > >> > Dim aktter As Range, acell As Range
> > >> > Set aktter = Selection.CurrentRegion
> > >> > For Each acell In aktter
> > >> > If Not acell.Locked Then acell.ClearContents
> > >> > Next acell
> > >> > End Sub
> > >> >
> > >> > Regards,
> > >> > Stefi
> > >> >
> > >> >
> > >> > "RobN" ezt *rta:
> > >> >
> > >> >> Could someone please provide me with some code to clear contents of
> > >> >> all
> > >> >> unlocked cells in a worksheet?
> > >> >>
> > >> >> Rob
> > >> >>
> > >> >>
> > >> >>
> > >>
> > >>
> > >>

> >
> >
> >

 
Reply With Quote
 
RobN
Guest
Posts: n/a
 
      11th Dec 2007
Thanks again Stefi!
It works fine except.....
For some strange reason I get the runtime error 1004 message, but only after
it has done about half the selected range. I amended the code a bit as
shown below, to see on which cell the error occurs. It's the same cell each
time but this cell is no different to most of the other cells immediately
surrounding it. (That is, it is formatted the same. I copied and pasted the
previous cell on which the code works to the offending cell.) In fact the
workbook has the same sheet repeated 12 times and the error occurs in the
same cell on each sheet!
Any ideas?

Sub delunlocked()
Dim acell As Range
Set aRange = Range("A1:J75")
For Each acell In aRange
If Not acell.Locked Then acell.ClearContents
acell.Select
Next acell
End Sub

Rob

"Stefi" <(E-Mail Removed)> wrote in message
news:57CDF5DB-C13E-4CD3-BCE8-(E-Mail Removed)...
>I found a simpler and shorter code (without needing "aktter"):
>
> Sub delunlocked()
> Dim acell As Range
> For Each acell In ActiveSheet.UsedRange
> If Not acell.Locked Then acell.ClearContents
> Next acell
> End Sub
>
> Stefi
>
> "Stefi" ezt rta:
>
>> You are welcome! Thanks for the feedback!
>> Sorry for "aktter", I forgot that it means nothing to non-Hungarian
>> speakers, it stands for "aktulis terlet" which means currently used
>> range.
>>
>> Stefi
>>
>> "RobN" ezt rta:
>>
>> > Thanks Stefi,
>> > That worked a treat!
>> > I use vs 2007 (and 2002 for my important files, he says cynically!)
>> >
>> > BTW, what made you call one of the dims aktter?
>> >
>> > Rob
>> >
>> > "Stefi" <(E-Mail Removed)> wrote in message
>> > news:06477886-AD14-42A4-B7DB-(E-Mail Removed)...
>> > > You didn't post which line causes the error! Anyway try this
>> > > version, it
>> > > will work on the whole active sheet:
>> > >
>> > > Sub delunlocked()
>> > > Dim aktter As Range, acell As Range
>> > > Cells.Find(What:="*", _
>> > > After:=Range("A1"), _
>> > > LookAt:=xlPart, _
>> > > LookIn:=xlValues, _
>> > > SearchOrder:=xlByRows, _
>> > > SearchDirection:=xlPrevious, _
>> > > MatchCase:=False).Activate
>> > > Set aktter = Range("A1", ActiveCell)
>> > > For Each acell In aktter
>> > > If Not acell.Locked Then acell.ClearContents
>> > > Next acell
>> > > End Sub
>> > >
>> > > Which Excel version do you use?
>> > >
>> > > Stefi
>> > >
>> > >
>> > > "RobN" ezt rta:
>> > >
>> > >> Thanks Stefi,
>> > >>
>> > >> But this comes up with a runtime error 1004.
>> > >>
>> > >> Do I need to select a range or something or will this do the whole
>> > >> active
>> > >> sheet?
>> > >>
>> > >> Rob
>> > >>
>> > >> "Stefi" <(E-Mail Removed)> wrote in message
>> > >> newsE0EA4CB-85FA-4C78-A66A-(E-Mail Removed)...
>> > >> > Try this:
>> > >> > Sub delunlocked()
>> > >> > Dim aktter As Range, acell As Range
>> > >> > Set aktter = Selection.CurrentRegion
>> > >> > For Each acell In aktter
>> > >> > If Not acell.Locked Then acell.ClearContents
>> > >> > Next acell
>> > >> > End Sub
>> > >> >
>> > >> > Regards,
>> > >> > Stefi
>> > >> >
>> > >> >
>> > >> > "RobN" ezt rta:
>> > >> >
>> > >> >> Could someone please provide me with some code to clear contents
>> > >> >> of
>> > >> >> all
>> > >> >> unlocked cells in a worksheet?
>> > >> >>
>> > >> >> Rob
>> > >> >>
>> > >> >>
>> > >> >>
>> > >>
>> > >>
>> > >>
>> >
>> >
>> >



 
Reply With Quote
 
Stefi
Guest
Posts: n/a
 
      12th Dec 2007
I have no idea about the reason of the error...
I would add

Dim aRange As Range

to your code, but it can't be the real reason...

If you send me a copy of the workbook, I'll give it a try
((E-Mail Removed)).

Stefi

„RobN” ezt *rta:

> Thanks again Stefi!
> It works fine except.....
> For some strange reason I get the runtime error 1004 message, but only after
> it has done about half the selected range. I amended the code a bit as
> shown below, to see on which cell the error occurs. It's the same cell each
> time but this cell is no different to most of the other cells immediately
> surrounding it. (That is, it is formatted the same. I copied and pasted the
> previous cell on which the code works to the offending cell.) In fact the
> workbook has the same sheet repeated 12 times and the error occurs in the
> same cell on each sheet!
> Any ideas?
>
> Sub delunlocked()
> Dim acell As Range
> Set aRange = Range("A1:J75")
> For Each acell In aRange
> If Not acell.Locked Then acell.ClearContents
> acell.Select
> Next acell
> End Sub
>
> Rob
>
> "Stefi" <(E-Mail Removed)> wrote in message
> news:57CDF5DB-C13E-4CD3-BCE8-(E-Mail Removed)...
> >I found a simpler and shorter code (without needing "aktter"):
> >
> > Sub delunlocked()
> > Dim acell As Range
> > For Each acell In ActiveSheet.UsedRange
> > If Not acell.Locked Then acell.ClearContents
> > Next acell
> > End Sub
> >
> > Stefi
> >
> > "Stefi" ezt *rta:
> >
> >> You are welcome! Thanks for the feedback!
> >> Sorry for "aktter", I forgot that it means nothing to non-Hungarian
> >> speakers, it stands for "aktuális terület" which means currently used
> >> range.
> >>
> >> Stefi
> >>
> >> "RobN" ezt *rta:
> >>
> >> > Thanks Stefi,
> >> > That worked a treat!
> >> > I use vs 2007 (and 2002 for my important files, he says cynically!)
> >> >
> >> > BTW, what made you call one of the dims aktter?
> >> >
> >> > Rob
> >> >
> >> > "Stefi" <(E-Mail Removed)> wrote in message
> >> > news:06477886-AD14-42A4-B7DB-(E-Mail Removed)...
> >> > > You didn't post which line causes the error! Anyway try this
> >> > > version, it
> >> > > will work on the whole active sheet:
> >> > >
> >> > > Sub delunlocked()
> >> > > Dim aktter As Range, acell As Range
> >> > > Cells.Find(What:="*", _
> >> > > After:=Range("A1"), _
> >> > > LookAt:=xlPart, _
> >> > > LookIn:=xlValues, _
> >> > > SearchOrder:=xlByRows, _
> >> > > SearchDirection:=xlPrevious, _
> >> > > MatchCase:=False).Activate
> >> > > Set aktter = Range("A1", ActiveCell)
> >> > > For Each acell In aktter
> >> > > If Not acell.Locked Then acell.ClearContents
> >> > > Next acell
> >> > > End Sub
> >> > >
> >> > > Which Excel version do you use?
> >> > >
> >> > > Stefi
> >> > >
> >> > >
> >> > > "RobN" ezt *rta:
> >> > >
> >> > >> Thanks Stefi,
> >> > >>
> >> > >> But this comes up with a runtime error 1004.
> >> > >>
> >> > >> Do I need to select a range or something or will this do the whole
> >> > >> active
> >> > >> sheet?
> >> > >>
> >> > >> Rob
> >> > >>
> >> > >> "Stefi" <(E-Mail Removed)> wrote in message
> >> > >> newsE0EA4CB-85FA-4C78-A66A-(E-Mail Removed)...
> >> > >> > Try this:
> >> > >> > Sub delunlocked()
> >> > >> > Dim aktter As Range, acell As Range
> >> > >> > Set aktter = Selection.CurrentRegion
> >> > >> > For Each acell In aktter
> >> > >> > If Not acell.Locked Then acell.ClearContents
> >> > >> > Next acell
> >> > >> > End Sub
> >> > >> >
> >> > >> > Regards,
> >> > >> > Stefi
> >> > >> >
> >> > >> >
> >> > >> > "RobN" ezt *rta:
> >> > >> >
> >> > >> >> Could someone please provide me with some code to clear contents
> >> > >> >> of
> >> > >> >> all
> >> > >> >> unlocked cells in a worksheet?
> >> > >> >>
> >> > >> >> Rob
> >> > >> >>
> >> > >> >>
> >> > >> >>
> >> > >>
> >> > >>
> >> > >>
> >> >
> >> >
> >> >

>
>
>

 
Reply With Quote
 
RobN
Guest
Posts: n/a
 
      13th Dec 2007
Thanks Stefi,

Just to keep this group informed, your code below worked perfectly after
discovering merged cells in the sheet.


Sub delunlocked()

Dim aRange As Range, acell As Range

Set aRange = Range("A1:J75")

For Each acell In aRange

If Not acell.Locked Then acell.MergeArea.ClearContents

Next acell

End Sub

Rob

"Stefi" <(E-Mail Removed)> wrote in message
news:E78F3AF3-A3EA-4CDB-BCDE-(E-Mail Removed)...
>I have no idea about the reason of the error...
> I would add
>
> Dim aRange As Range
>
> to your code, but it can't be the real reason...
>
> If you send me a copy of the workbook, I'll give it a try
> ((E-Mail Removed)).
>
> Stefi
>
> "RobN" ezt rta:
>
>> Thanks again Stefi!
>> It works fine except.....
>> For some strange reason I get the runtime error 1004 message, but only
>> after
>> it has done about half the selected range. I amended the code a bit as
>> shown below, to see on which cell the error occurs. It's the same cell
>> each
>> time but this cell is no different to most of the other cells immediately
>> surrounding it. (That is, it is formatted the same. I copied and pasted
>> the
>> previous cell on which the code works to the offending cell.) In fact
>> the
>> workbook has the same sheet repeated 12 times and the error occurs in the
>> same cell on each sheet!
>> Any ideas?
>>
>> Sub delunlocked()
>> Dim acell As Range
>> Set aRange = Range("A1:J75")
>> For Each acell In aRange
>> If Not acell.Locked Then acell.ClearContents
>> acell.Select
>> Next acell
>> End Sub
>>
>> Rob
>>
>> "Stefi" <(E-Mail Removed)> wrote in message
>> news:57CDF5DB-C13E-4CD3-BCE8-(E-Mail Removed)...
>> >I found a simpler and shorter code (without needing "aktter"):
>> >
>> > Sub delunlocked()
>> > Dim acell As Range
>> > For Each acell In ActiveSheet.UsedRange
>> > If Not acell.Locked Then acell.ClearContents
>> > Next acell
>> > End Sub
>> >
>> > Stefi
>> >
>> > "Stefi" ezt rta:
>> >
>> >> You are welcome! Thanks for the feedback!
>> >> Sorry for "aktter", I forgot that it means nothing to non-Hungarian
>> >> speakers, it stands for "aktulis terlet" which means currently used
>> >> range.
>> >>
>> >> Stefi
>> >>
>> >> "RobN" ezt rta:
>> >>
>> >> > Thanks Stefi,
>> >> > That worked a treat!
>> >> > I use vs 2007 (and 2002 for my important files, he says cynically!)
>> >> >
>> >> > BTW, what made you call one of the dims aktter?
>> >> >
>> >> > Rob
>> >> >
>> >> > "Stefi" <(E-Mail Removed)> wrote in message
>> >> > news:06477886-AD14-42A4-B7DB-(E-Mail Removed)...
>> >> > > You didn't post which line causes the error! Anyway try this
>> >> > > version, it
>> >> > > will work on the whole active sheet:
>> >> > >
>> >> > > Sub delunlocked()
>> >> > > Dim aktter As Range, acell As Range
>> >> > > Cells.Find(What:="*", _
>> >> > > After:=Range("A1"), _
>> >> > > LookAt:=xlPart, _
>> >> > > LookIn:=xlValues, _
>> >> > > SearchOrder:=xlByRows, _
>> >> > > SearchDirection:=xlPrevious, _
>> >> > > MatchCase:=False).Activate
>> >> > > Set aktter = Range("A1", ActiveCell)
>> >> > > For Each acell In aktter
>> >> > > If Not acell.Locked Then acell.ClearContents
>> >> > > Next acell
>> >> > > End Sub
>> >> > >
>> >> > > Which Excel version do you use?
>> >> > >
>> >> > > Stefi
>> >> > >
>> >> > >
>> >> > > "RobN" ezt rta:
>> >> > >
>> >> > >> Thanks Stefi,
>> >> > >>
>> >> > >> But this comes up with a runtime error 1004.
>> >> > >>
>> >> > >> Do I need to select a range or something or will this do the
>> >> > >> whole
>> >> > >> active
>> >> > >> sheet?
>> >> > >>
>> >> > >> Rob
>> >> > >>
>> >> > >> "Stefi" <(E-Mail Removed)> wrote in message
>> >> > >> newsE0EA4CB-85FA-4C78-A66A-(E-Mail Removed)...
>> >> > >> > Try this:
>> >> > >> > Sub delunlocked()
>> >> > >> > Dim aktter As Range, acell As Range
>> >> > >> > Set aktter = Selection.CurrentRegion
>> >> > >> > For Each acell In aktter
>> >> > >> > If Not acell.Locked Then acell.ClearContents
>> >> > >> > Next acell
>> >> > >> > End Sub
>> >> > >> >
>> >> > >> > Regards,
>> >> > >> > Stefi
>> >> > >> >
>> >> > >> >
>> >> > >> > "RobN" ezt rta:
>> >> > >> >
>> >> > >> >> Could someone please provide me with some code to clear
>> >> > >> >> contents
>> >> > >> >> of
>> >> > >> >> all
>> >> > >> >> unlocked cells in a worksheet?
>> >> > >> >>
>> >> > >> >> Rob
>> >> > >> >>
>> >> > >> >>
>> >> > >> >>
>> >> > >>
>> >> > >>
>> >> > >>
>> >> >
>> >> >
>> >> >

>>
>>
>>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to delete the content of all unlocked cells in a protected she DrDisk7 Microsoft Excel Misc 1 8th Jan 2008 09:58 AM
Macro: Clear contents of unlocked cells =?Utf-8?B?VHVja2xhbmQ=?= Microsoft Excel Programming 5 14th Jun 2007 12:13 PM
Moving from unlocked cells to unlocked cells in an excel form =?Utf-8?B?U3RhY2V5IExlZQ==?= Microsoft Excel Worksheet Functions 1 24th Apr 2006 08:44 PM
Delete contents of unlocked cells in another worksheet =?Utf-8?B?S0ZFYWdsZQ==?= Microsoft Excel Misc 3 9th Aug 2005 08:42 PM
Delete specific cells contents in a row with some locked cells in the same row trussman Microsoft Excel Programming 2 1st Mar 2005 06:12 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 10:20 PM.