LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #1   Report Post  
Posted to microsoft.public.excel.misc
 
Posts: n/a
Default Excel 2000 macro not working in Excel 2003

Hi,

I have a macro which runs fine in Excel 2000 but does not run in Excel
2003. Here it is:

------------------
Sub ViewHideZeroToggle()
IsProtected = ActiveSheet.ProtectContents

If IsProtected = True Then
ActiveSheet.Unprotect
End If

If ActiveSheet.CheckBoxes("Zero Toggle").Value = xlOn Then
ZH = 12.75
Else
ZH = 0
End If

If ActiveSheet.CheckBoxes("Results Toggle").Value = xlOn Then
Res = True
Else
Res = False
End If

Application.ScreenUpdating = False
For Cell = 4 To 1000
ACell = "A" & CStr(Cell)
BCell = "B" & CStr(Cell)
If (ActiveSheet.Range(ACell).Value = "Total" And Res) Or
(ActiveSheet.Range(ACell) = "Results" And Not
ActiveSheet.Range(BCell).HasFormula And Not Res) Then
Cend = Cell
For XCell = Cend - 1 To 4 Step -1
ACell = "B" & CStr(XCell)
If ActiveSheet.Range(ACell).HasFormula Then
If ActiveSheet.Range(ACell).Value <= 0 Or
ActiveSheet.Rows(CStr(XCell) & ":" & CStr(XCell)).RowHeight = 0 Then
ActiveSheet.Rows(CStr(XCell) & ":" &
CStr(XCell)).RowHeight = ZH
End If
End If
Next XCell
End If
Next Cell

Application.ScreenUpdating = True

If IsProtected = True Then
ActiveSheet.Protect DrawingObjects:=True, Contents:=True,
Scenarios:=True
End If
End Sub

--------------------------------

The error comes at the below mentioned line:

If ActiveSheet.Range(ACell).Value <= 0 Or ActiveSheet.Rows(CStr(XCell)
& ":" & CStr(XCell)).RowHeight = 0 Then

------------------------------

The error I get is ...

Run-time error '13':
Type mismatch.

-------------------------------

I looked at similar postings on the group before but could not solve my
problem. Can somebody help in solving this problem?

Thanks.

 
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
macro from excel 97 that doesnt work in excel 2003 (help) [email protected] Excel Discussion (Misc queries) 2 May 16th 06 03:01 PM
GetSaveAsFilename not working in Excel 2003 Mayur Patel Excel Discussion (Misc queries) 8 September 11th 05 08:44 PM
Excel 2000 to 2003 update links doesn't work properly any suggest Richard Excel Worksheet Functions 2 September 8th 05 01:06 AM
Excel Re-calculation 2000 compared to 2003 tonymitchell Excel Discussion (Misc queries) 1 August 3rd 05 04:22 PM
Excel 2000 to Excel 2003.... is it worh it? ste mac Excel Discussion (Misc queries) 7 February 22nd 05 11:31 AM


All times are GMT +1. The time now is 03:12 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"