Here is your problem statement:
Set GetLastNonEmptyCellOnWorkSheet = Ws.Range(Ws.Cells(lLastRow, lLastCol))
Evaluate the innermost parentheses:
ws.Cells(lLastRow, lLastCol)
This is a range, but a range’s default property is its .Value
. Unless there is a named range corresponding to this value, the error is expected.
Instead, try:
Set GetLastNonEmptyCellOnWorkSheet = Ws.Range(Ws.Cells(lLastRow, lLastCol).Address)
Or you could simplify slightly:
Set GetLastNonEmptyCellOnWorkSheet = Ws.Cells(lLastRow, lLastCol)
Related Posts:
- What does <> mean?
- How to find a value in an excel column by vba code Cells.Find
- What is the function of FormulaR1C1?
- What exactly is the function of Application.CutCopyMode property in Excel
- VBA Excel – Insert row below with same format including borders and frames
- Excel VBA: Can’t get a match, error “Unable to get the Match property of the WorksheetFunction class”
- How to install Date Picker form control in Excel 2016
- How to install Date Picker form control in Excel 2016
- How to fill color in a cell in VBA?
- Refreshing all the pivot tables in my excel workbook with a macro
- What is the difference between “Form Controls” and “ActiveX Control” in Excel 2010?
- Average in VBA in Excel
- VBA Excel “Compile error: Object Required”
- Choosing paper size (NOT DEFAULT sizes) in excel vba
- “Unable to get the VLookup property of the WorksheetFunction Class” error [duplicate]
- Paste Special error 1004 PasteSpecial method of Range class failed
- Cannot run the macro… the macro may not be available in this workbook
- How to use Regular Expressions (Regex) in Microsoft Excel both in-cell and loops
- How to use Regular Expressions (Regex) in Microsoft Excel both in-cell and loops
- Object Required Error in excel VBA
- Check if a string contains another string
- VBScript to open a dialog to select a filepath
- Does VBA have Dictionary Structure?
- What are .NumberFormat Options In Excel VBA?
- Better way to find last used row
- VBA, if a string contains a certain letter
- Excel VBA Macro: User Defined Type Not Defined
- “Sub or Function not defined” when trying to run a VBA script in Outlook
- VBA Runtime Error 1004 “Application-defined or Object-defined error” when Selecting Range
- Select method of Range class failed via VBA
- Does VBA contain a comment block syntax?
- Why does “Paste Method of Worksheet class failed” occasionally occur?
- Deleting a file in VBA
- How to return a result from a VBA function
- How to clear memory to prevent “out of memory error” in excel vba?
- Use VBA to Clear Immediate Window?
- VBA: Else without If Error
- Recommended IDE for VBA
- ByRef argument type mismatch in Excel VBA
- How to comment and uncomment blocks of code in the Office VBA Editor
- Run-time error ‘3061’. Too few parameters. Expected 1. (Access 2007)
- VBA: Convert Text to Number
- VBA Error: “Compile error: Expected End Sub”
- Scraping data from website using vba
- Pass arguments to Constructor in VBA
- Error: “Could Not Find Installable ISAM”
- Loop without Do error
- Row count where data exists
- Test or check if sheet exists
- How to detect if user select cancel InputBox VBA Excel
- macro run-time error ‘9’: subscript out of range
- Why does my VBA code throw an “Invalid outside procedure” error?
- VBA: Run time error ’91’?
- Compare Dates in VBA
- ‘Cannot find DAO350.dll’ file error VB6
- Excel Solver Password: what is it and where can it be acquired/bought?
- Using Excel VBA to run SQL query
- Compile error: Next without For || VBA
- Is there a way to crack the password on an Excel VBA Project?
- MS Excel Scatterplot converts Months to Numbers
- Substring in excel
- IndexError: too many indices for array
- IndexError: too many indices for array
- Excel to Google Sheets – Error: Formula parse error
- Exception in thread “AWT-EventQueue-0” java.lang.NullPointerException Error
- ‘Microsoft.ACE.OLEDB.12.0’ provider is not registered on the local machine
- IndexError: too many indices for array
- Swap x and y axis without manually swapping values
- Excel: Calculate the frequency of a particular month in a column of date cells
- ImportError: Missing required dependencies [‘numpy’]
- WindowsError: [Error 193] %1 is not a valid Win32 application in Python
- Looking for a clear description of Excel’s .xlsx XML format
- Help needed with Median If in Excel
- Invalid column count in CSV input on line 1 Error
- Invalid column count in CSV input on line 1 Error
- ‘int’ object has no attribute ‘__getitem__’
- excel IF formula Error, “You’ve entered too many arguments”
- Insert picture into Excel cell
- Export html table data to Excel using JavaScript / JQuery is not working properly in chrome browser
- What is a correct MIME type for .docx, .pptx, etc.?
- Is there Infinity in Spreadsheets?
- How to fix file format and extension don’t match?
- Declaring variables in Excel Cells
- TypeError: Cannot read property “0” from undefined
- How to loop in excel without VBA or macros?
- How can I open an Excel file in Python?
- Python error – IDLE’s subprocess didn’t make connection. Either IDLE can’t start or personal firewall software is blocking connection
- ValueError: cannot index with vector containing NA / NaN values
- ‘int’ object has no attribute ‘__getitem__’
- Need more information about Aborted (core dumped)
- How can I import an Excel file into SQL Server?
- What is correct content-type for excel files?
- How do I get countifs to select all non-blank cells in Excel?
- lists and arrays in VBA
- What causes java.lang.IncompatibleClassChangeError?
- How to run a SQL query on an Excel table?
- How do I fix “Undefined variable” error in PHP?
- Excel – SUMIFS for multiple columns
- Workaround for “Formula omits adjacent cells”
- ImportError: No module named win32com.client