Add data to new row each time data is entere
Solved/Closed
Related:
- Add data to new row each time data is entere
- Tmobile data check - Guide
- Popcorn time download - Download - Movies, series and TV
- Gta 5 data download for pc - Download - Action and adventure
- Transfer data from one excel worksheet to another automatically - Guide
- Digital data transmission - Guide
1 response
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
Feb 19, 2010 at 08:14 AM
Feb 19, 2010 at 08:14 AM
Having not seen how you are doing it. All I can suggest is that find the last used row and add one to it. If the result if 4 or less then make it 5
If col A will always have data then you can use this to find last row
lastrow = cells(65536,1).end)xlup).row
lastrow = lastrow + 1
if lastrow < 5 then lastrow = 5
If col A will always have data then you can use this to find last row
lastrow = cells(65536,1).end)xlup).row
lastrow = lastrow + 1
if lastrow < 5 then lastrow = 5
Feb 19, 2010 at 08:49 PM