Hi, I am new to VBA and these forums but since every question I put in Google directed me here I figured I'd just make my own account.
I can't find a way to use the END, SHIFT+ENTER function from VBA. This is important because the file contains empty cells and the amount of colums varies per...
Dim sht As Worksheet
Set sht = Sheets("REX")
LastRow = sht.Range("A75").Rows.Count
Range("F75").Value = "543"
Selection.AutoFill Destination:=Range("F75:F" & LastRow)
I am trying to put value starting F75 to last row of F, but It's not working.
Is there any way to fix this code to work?
Hy All,
I'm having trouble finding a way to find the last cell in column ignoring formulas.
Honestly I found some pieces of code in a already existing thread in this forum.
I tried this one I found, but returns error
Dim oneArea As Range, finalCell As RangeSet finalCell =...
Hello,
I am very new to VBA and I am looking to create a macro to define the print area for each worksheet in my workbook.
Currently this is the code I am using and it is assigned to a button; the trouble I have is that instead of setting the print area to the last cell of each worksheet (the...
Hi all
I am looking fo a way to find the last entry accross in a large data set, excluding heading etc.
data is all numbers within the range AU100:YT10000. I already have a countA to validate a columns with data, returning (1 or 0), but I would like to have a row above that looks at the...
I am trying to take some data out of a couple hundred sheets. Basically I open each one by one pull the key data and find the last available cell in column D as the start point to paste to from the next file. It seems to keep selecting row 23 (even though the cells up to 2 are empty) and then...
Hi everyone,
So I'm creating a tracker for a project at work. I'm tracking communication with a group of companies (sales). Anyway, I'm using the first worksheet (i.e. the one on the far left) to keep a summary of the last communication I had with the company. Each subsequent worksheet...