RogerBikeSwim
New Member
- Joined
- Jul 27, 2010
- Messages
- 3
Hello,
I'm new at VBA and I could use some help debugging my code. I keep getting the error, "run-time error '13' type mismatch." Thanks.
' Converts 0.00 values to "-" characters
'---------------------------------------
For Each c In Worksheets("Central").Range("B10:L1219").Cells
If c.Value = 0 Then ActiveCell.NumberFormat = "0;(0); " - ""
Next
I'm new at VBA and I could use some help debugging my code. I keep getting the error, "run-time error '13' type mismatch." Thanks.
' Converts 0.00 values to "-" characters
'---------------------------------------
For Each c In Worksheets("Central").Range("B10:L1219").Cells
If c.Value = 0 Then ActiveCell.NumberFormat = "0;(0); " - ""
Next