Finding insertion point in excel
Closed
challenged
-
Jul 16, 2009 at 02:16 AM
Excelguru Posts 261 Registration date Saturday April 11, 2009 Status Member Last seen June 21, 2011 - Jul 17, 2009 at 05:14 AM
Excelguru Posts 261 Registration date Saturday April 11, 2009 Status Member Last seen June 21, 2011 - Jul 17, 2009 at 05:14 AM
Related:
- Finding insertion point in excel
- Number to words in excel - Guide
- Insert gif in excel - Guide
- Marksheet in excel - Guide
- How to take screenshot in excel - Guide
- Excel free download - Download - Spreadsheets
1 response
Excelguru
Posts
261
Registration date
Saturday April 11, 2009
Status
Member
Last seen
June 21, 2011
307
Jul 17, 2009 at 05:14 AM
Jul 17, 2009 at 05:14 AM
Hello challenged,
to recognise the first appropriate empty spot in the second "outputs" worksheet, use the end property of VBA as in
Range("B4").End(xlDown).Select where column B is contiguous
to find insertion points have fixed locations always separated by 7 cells/columns (ie: A:12, G:12, N:12, U:12 .... etc,etc) use offset property
Worksheets("Sheet1").Activate
ActiveCell.Offset(rowOffset:=3, columnOffset:=3).value=Yourvalue
to recognise the first appropriate empty spot in the second "outputs" worksheet, use the end property of VBA as in
Range("B4").End(xlDown).Select where column B is contiguous
to find insertion points have fixed locations always separated by 7 cells/columns (ie: A:12, G:12, N:12, U:12 .... etc,etc) use offset property
Worksheets("Sheet1").Activate
ActiveCell.Offset(rowOffset:=3, columnOffset:=3).value=Yourvalue