first empty row (visual c++)
Hello,
I have macro in vba and i need it in Visual C++
Does anyone know how to do it?
I would be very grateful for any help
firstEmptyRow =
ActiveSheet.UsedRange.Cells(ActiveSheet.UsedRange. Cells.Count).Offset(1,
0).Row
Set firstEmptyCell = Range("A" & firstEmptyRow)
firstEmptyCell.Select
|