I am trying to call this private sub but its not working. Any thoughts.
This works:
This doesn't work (doesn't compile):
This doesn't work (compiles but doesn't do anything):
AMAS
This works:
Code:
Call FormatCells(cell, myList, myColor)
This doesn't work (doesn't compile):
Code:
Application.Run "FormatCells" (cell, myList, myColor)
This doesn't work (compiles but doesn't do anything):
Code:
Application.Run "FormatCells, cell, myList, myColor"
AMAS