S
sam
Hi All,
I want to update a worksheet through excel userform. and want to populate a
new row everytime a user submits the data through the userform.
To do That I have the following line of code:
Set DestRow = .Cells(.Rows.Count, 1).End(xlUp).Offset(1, 0).Row
But with this line, it populates the new row if there is data in first cell
of the previouis row, If the first cell of the previous row has no data
(other cells have data) then It overrites the data in that row.
Hope I made it clear
Thanks in advance
I want to update a worksheet through excel userform. and want to populate a
new row everytime a user submits the data through the userform.
To do That I have the following line of code:
Set DestRow = .Cells(.Rows.Count, 1).End(xlUp).Offset(1, 0).Row
But with this line, it populates the new row if there is data in first cell
of the previouis row, If the first cell of the previous row has no data
(other cells have data) then It overrites the data in that row.
Hope I made it clear
Thanks in advance