=r[-1]c

  1. F

    Running Macros In diffirenet sheet.

    Hi, I am running a MACRO in sheet2 by clicking on a bottom on sheet1, all of my code is working very well, except here: .Columns("H2:I20000").SpecialCells(xlCellTypeBlanks).Select .Selection.FormulaR1C1 = "=R[-1]C" What i am trying to do here is to tell excel to go to Find & Select >...
  2. V

    Fill Blanks

    the below code works very well, but if there isn't any blank cells it gives a error, any idea as how to modif the same. Sub Fill_Blanks() With Range("M5:M" & Range("J" & Rows.Count).End(xlUp).Row) .SpecialCells(xlBlanks).FormulaR1C1 = "=R[-1]C" .Value = .Value End With End Sub
  3. S

    Getting #REF result from FormulaR1C1 = "=R[-1]C"

    I am trying to copy a value in a cell to the blank cells below. I have the following: Dim LastRow As Long LastRow = PLSR.Cells(Rows.Count, 2).End(xlUp).Row Copy Employee number in Column A to blank cells below With Range("A1:A" & LastRow) .SpecialCells(xlBlanks).FormulaR1C1 = "=R[-1]C"...

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