Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi
Im trying to get the following code to run from a custom add-in button. The code works fine when its in the Workbook code area, however, when i put it into a module in order to package it as an add-in i get the error "Variable not defined" with cell highlighted. Any ideas? Thanks a lot for any suggestions. Paul Sub FormatMIdates() Selection.NumberFormat = "@" For Each cell In Selection midate = cell.Value If midate < "" Then pYear = Left(midate, 4) pmonth = Mid(midate, 5, 2) pday = Right(midate, 2) newDate = pday + "/" + pmonth + "/" + pYear cell.Value = newDate End If Next End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
have some problem with database | Excel Discussion (Misc queries) | |||
Urgent Help Required on Excel Macro Problem | Excel Discussion (Misc queries) | |||
Problem With Reference Update | Excel Worksheet Functions | |||
Copy an Drag cell Formula Problem | Excel Discussion (Misc queries) | |||
Freeze Pane problem in shared workbooks | Excel Discussion (Misc queries) |