i have made a project by excel with VB programming under excel 2003
now:
how can i let this project work under excel 2007 or higher version???
i found different in number of columns and rows between versions of excel .... did all that i need to update program to calculate new number of columns and rows only,,,example:
in excel 2003 to find last column: code is
cc = Sheet2.Columns(256).End(xlToLeft).Column
also to find last row: code is
lastrow = Sheet1.Rows(65536).End(xlUp).Row
all that codes likely must be changed ,,,, so what else????
thanks
now:
how can i let this project work under excel 2007 or higher version???
i found different in number of columns and rows between versions of excel .... did all that i need to update program to calculate new number of columns and rows only,,,example:
in excel 2003 to find last column: code is
cc = Sheet2.Columns(256).End(xlToLeft).Column
also to find last row: code is
lastrow = Sheet1.Rows(65536).End(xlUp).Row
all that codes likely must be changed ,,,, so what else????
thanks