Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have the following macro attached to a button on my "Price Estimator"
worksheet trying to clear contents in all of the unlocked cells of the worksheet. Can someone please help me figure out what is wrong with the following: Sub ClearForm() Dim c As Range For Each c In Sheets("PRICE ESTIMATOR").UsedRange If c.Locked = False Then c.ClearContents End Sub |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Is it as simple as missing End If and Next lines?
Sub ClearForm() Dim c As Range For Each c In Sheets("PRICE ESTIMATOR").UsedRange If c.Locked = False Then c.ClearContents End If Next c End Sub If that was just typo stuff in your query then maybe all cells are locked (so nothing to do). -- LMH "CandiC" wrote: I have the following macro attached to a button on my "Price Estimator" worksheet trying to clear contents in all of the unlocked cells of the worksheet. Can someone please help me figure out what is wrong with the following: Sub ClearForm() Dim c As Range For Each c In Sheets("PRICE ESTIMATOR").UsedRange If c.Locked = False Then c.ClearContents End Sub |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() Sub ClearForm() Dim c As Range For Each c In Sheets("PRICE ESTIMATOR").UsedRange If c.Locked = False Then c.ClearContents next c End Sub -- Don Guillett Microsoft MVP Excel SalesAid Software "CandiC" wrote in message ... I have the following macro attached to a button on my "Price Estimator" worksheet trying to clear contents in all of the unlocked cells of the worksheet. Can someone please help me figure out what is wrong with the following: Sub ClearForm() Dim c As Range For Each c In Sheets("PRICE ESTIMATOR").UsedRange If c.Locked = False Then c.ClearContents End Sub |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Sub ClearForm()
Dim c As Range For Each c In Sheets("PRICE ESTIMATOR").UsedRange If c.Locked = False Then c.ClearContents End If Next c End Sub Gord Dibben MS Excel MVP On Fri, 13 Nov 2009 14:30:01 -0800, CandiC wrote: I have the following macro attached to a button on my "Price Estimator" worksheet trying to clear contents in all of the unlocked cells of the worksheet. Can someone please help me figure out what is wrong with the following: Sub ClearForm() Dim c As Range For Each c In Sheets("PRICE ESTIMATOR").UsedRange If c.Locked = False Then c.ClearContents End Sub |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro to clear checkboxes and protected cells | Excel Worksheet Functions | |||
clear cells macro | Excel Discussion (Misc queries) | |||
macro to clear cells | Excel Discussion (Misc queries) | |||
Moving from unlocked cells to unlocked cells in an excel form | Excel Worksheet Functions | |||
Macro to clear cells | Excel Discussion (Misc queries) |