• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Need Fixed column value in FormulaR1C1

hasu303

New Member
>>> use code - tags <<<
Code:
Dim lastRow As Long
        Dim i As Long

        lastRow = WBJC.Worksheets("SAMPLE").Range("A" & Rows.Count).End(xlUp).Row
            For i = 2 To lastRow

                If WBJC.Worksheets("SAMPLE").Range("A" & i).Value = "Physical" Then
                  'WBJC.Worksheets("SAMPLE").Range("B" & i).Value = "=RC[5]* 1865"
             End If
            Next i
i Need fixed column value which is in ("B2") Rs. 1865
 
Last edited by a moderator:
That would cause a circular reference since the first cell you put the formula in is B2.
 
Back
Top