Hi I want to divide respective cells in one column with other column and obtaining the results in next column using cells reference. Here is VBA code i am using
Range(Cells(3, lastcolumn + 6), Cells(5, lastcolumn + 6)).Formula = "=" & Cells(3, lastcolumn + 4) & "/" & Cells(3, lastcolumn + 5)
It...