i have a problem with my vba code. i have to generate a line and point numbers for my survey and grab a coordinate for that points from another txt file. It work fine until row number 1020, after that point, formula can't find a first empty cell in column, and insted continue to write data to first column.
my formula to find a first empty cell in column is
Worksheets("POSTAVLJANJE").Activate
NextFree = Range("B3:B" & Rows.Count).Cells.SpecialCells(xlCellTypeBlanks).Row
Range("B" & NextFree).Select
any idea?