Solved. I've been looking for code that would allow you to select the range of last column and last row within a spreadsheet. After doing some digging and using some logic, I was able to come up with a solution. First, I defined the last Row using the following:
LR = Range("A" & rows.count).end(xlup).row and then I used the following to define last column
LC= wcolNm(colNum)
Public function LC= wcolNm(colNum)
ColNum = Cells(1 & columns.count).end(xltoleft).column
wcolumn = split(cells(1, column).address, "$")(1)
End function
The end state looks as followed:
Range("A" & 1 & ":" & LC & LR).select
Which I inserted after LC. My apologies if this is confusing but I'm new to coding and was looking for this code for a while so I felt like it would be good to post. I'll give more details if needed.