Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have created a macro which fills in the blank entries of
columnA much like using f5-special-blanks uparrow & ctrl- enter. The code I have works. But I did it by cheating a bit. My data will be variable size from instance to instance, so what I did was find the bottom of my data with ActiveCell.End(xlDown)in columnB and then looked for blanks in columnA and columnB. I know there will be no blanks in B so the result is the blanks in A will be filled in. My question is, how would I do it without the cheating? I want a range from A2 to the last row in A but I'm not sure how to reference that. Also, the UsedRange property may be inaccurate since the sheet is created by copying another sheet. Code snippet follows. Range("B2").Select Range("A2", ActiveCell.End(xlDown)).Select Selection.SpecialCells(xlCellTypeBlanks).Select Selection.FormulaR1C1 = "=R[-1]C" Thanks in advance Drabbacs |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Searching and returning row number of a value | Excel Worksheet Functions | |||
UsedRange problem | Excel Programming | |||
finding last row number of UsedRange | Excel Programming | |||
UsedRange problem | Excel Programming | |||
Usedrange | Excel Programming |