I have a statement in a sub of a module like this:
desLastRowNumber = ActiveSheet.Cells(.Rows.count, "F").End(xlUp).Row
Call ActiveSheet.Boxes(desLastRowNumber)
AND "Public Sub Boxes(newRow As Long)" is declared in another module
When I run my program, I get the error stating that: method not found!
What's wrong with my code?
Anyone can help me? Thank you!!
desLastRowNumber = ActiveSheet.Cells(.Rows.count, "F").End(xlUp).Row
Call ActiveSheet.Boxes(desLastRowNumber)
AND "Public Sub Boxes(newRow As Long)" is declared in another module
When I run my program, I get the error stating that: method not found!
What's wrong with my code?
Anyone can help me? Thank you!!