View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
eksh eksh is offline
external usenet poster
 
Posts: 32
Default Auto Fit on Row Height

are you getting run-time error '1004' on your macro?
did you tick to enable Format row in protect sheet options?

"dragons_lair" wrote:

I have 2 worksheets in a workbook which are filled in by other users using a
selection of drop down lists and vlookups etc. and I want to be able to
automatically have the row height selected by the data entered. I have been
looking through previous discussions and found the following entry which
works a treat for what I am doing, however if I protect the worksheets then
this no longer works any suggestions. There are no meged cells in these
worksheets

Private Sub Worksheet_Change(ByVal Target As Range)
Application.EnableEvents = False
Cells.EntireRow.AutoFit
Application.EnableEvents = True

Thanks
--
Dragonette