Hi
i copy figure from one excel files like this
and they get displalyed in a difference excel file like this
if that figure didnt have a minus sign init and i wanted to put 1 in how can this be done.
also sometimes there might be a minus sign with the value and i want to remove it how can this also be done
Thanks
i copy figure from one excel files like this
Code:
oRng = oWSSheet.Cells.Find("OVERDRAFT EXPENSE (43979000)", , _
Excel.XlFindLookIn.xlValues, Excel.XlLookAt.xlPart, _
Excel.XlSearchOrder.xlByRows, Excel.XlSearchDirection.xlNext, False)
' MsgBox("Value '" & oRng.Value & "' found at '" & oRng.Address)
Me.oveexp = oRng.Offset(0, 5).Value
oRng = Nothing
Code:
oBook.Worksheets(1).Cells(2, 3).value = _oveexp
also sometimes there might be a minus sign with the value and i want to remove it how can this also be done
Thanks