Can't autofill a formula to a variable last
Closed
j
-
Apr 21, 2010 at 02:04 PM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Jul 14, 2010 at 07:15 PM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Jul 14, 2010 at 07:15 PM
Related:
- Vba autofill formula to last row
- Number to words in excel formula without vba - Guide
- Vba case like - Guide
- Saints row 2 cheats - Guide
- Logitech formula vibration feedback wheel driver - Download - Drivers
- Excel grade formula - Guide
3 responses
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
Apr 21, 2010 at 02:54 PM
Apr 21, 2010 at 02:54 PM
By blank rows are you saying that there is data and then some blank rows and then again data etc ?
I am having the same problem (I think). It seems like the case is that their macro might expand a table or something. Then, they just want the macro to fill series to complete the table. Not extend past the last data cell of the table.
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
Jul 14, 2010 at 07:15 PM
Jul 14, 2010 at 07:15 PM
Just find the last row of the sheet. There are many ways.
Most simple is if you have a column that will always have a value you can use
LastRow = cells(rows.count, "A").end(xlup).row
this is based on column A
Most simple is if you have a column that will always have a value you can use
LastRow = cells(rows.count, "A").end(xlup).row
this is based on column A