>>> use code - tags <<<
i Need fixed column value which is in ("B2") Rs. 1865
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
Last edited by a moderator: