hi
i have a worksheet with some rows and columns
i want to paste maximum values from certain rows iteratively into a cell using vb.net
i wrote the code but it giving the error for bold text given below "Exception from HRESULT: 0x800A03EC"
please look in to this problem
For i3 As Integer = 5 To rows2
With oWs
.cells(11, i3).formula = "=max(.range(E & i3 & : j & i3 ))"
End With
Next
please guide me the correct way
gvg
i have a worksheet with some rows and columns
i want to paste maximum values from certain rows iteratively into a cell using vb.net
i wrote the code but it giving the error for bold text given below "Exception from HRESULT: 0x800A03EC"
please look in to this problem
For i3 As Integer = 5 To rows2
With oWs
.cells(11, i3).formula = "=max(.range(E & i3 & : j & i3 ))"
End With
Next
please guide me the correct way
gvg