error 424

  1. V

    Why is this a Run-time error 424 - Object Required?

    I'm sure this is something super simple, but I can't figure it out. Dim addMe As Range Dim dashB As Worksheet Set dashB = Sheet1 Set addMe = dashB.Cells(dashB.Rows.Count, "A").End(xlUp).Offset(1).Row setting the addMe is giving the error.
  2. B

    insert picture in worksheet

    Hello. I am trying to run a code that after reading the value of cell "A:2" must display a picture in the active worksheet. This is my code: Public Sub insertpicture() If Intersect(Target, Range("A2")) Is Nothing Then Exit Sub End If Dim myPict As Picture With Range("A20:J20") 'Set myPict =...
  3. B

    save & Clear

    Sub SaveInvWithNewName() Dim NewFN As Variant ' Copy Invoice to a new workbook ActiveSheet.Copy NewFN = "C:\Users\Donny\Google Drive\Data\Invoice" & Range("B15").Value & “.xlsx” ActiveWorkbook.SaveAs NewFN, FileFormat:=xlOpenXMLWorkbook ActiveWorkbook.Close...
  4. D

    Excel-Macro: Paste Link to a new worksheet (Run-time error '424': Object required)

    Hey, I am currently working on a macro for duplicating a worksheet and pasting specific values from it into a new column of a remaining worksheet. However, whenever I try to paste link specific values to another worksheet, I receive the message 'Run-time error '424': Object required'. This is...
  5. K

    Check Box Value Error "object Required" Error 424

    This is the First Macro i've ever tried to create. There is two but they are both giving the same error. Any help is appreciated!!! Sub L2LTrue() If L2LCheckBox.Value = True Then 'L2L True Macro Range("E20").Select ActiveCell.FormulaR1C1 = "=R[38]C[5]-R[39]C[1]-R[-12]C[-3]"...
  6. A

    Run Time Error 1004, Error 13 & Error 424 for the same thing... Newbee Help Please!!

    Hi, I am trying to write a code which will loop through all excel workbooks in a particular folder & copy data from a specific tab on each sheet and then paste it to a master excel workbook. I have got the code to select folder, extension, tabname basis inputs from user and also loop thru...
  7. L

    Trying to insert a simple VBA sub in to Excel...Stumped

    Please forgive the rudimentary nature of the question, I have not written in VBS/VBA in a long time and I have never used it with Excel. I find myself in need of a loop to help me write a configuration for a Cisco router. I see to be a simple enough endeavor, but whenever I run the macro in...
  8. R

    Object Required calling function on another form

    I am having issues with this code calling the public function EditEntry on frmRunEntry Private Sub CommandButton1_Click() Dim Response As Long Dim RowNum As Variant 'Get the record ID from the user Response = InputBox("Please enter the ID number") 'Test the user input...
  9. A

    Object Required Error 424 on Find Method

    I'm trying to run a .find operation in VBA but keep getting Run-Time Error 424 = Object Required. What does that mean? Below is my code. If you can help me identify my error i'd appreciate it. Thanks, Note I've declared 'WorkOrder' as a Double type (it's a work order number with two digits...

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top