Home |
Search |
Today's Posts |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hope this helps.....
Sub DelNegative() For X = 1 To 1 Dim redRng As Range Set redRng = Range("A1", Range("A100").End(xlUp)) For Each cell In redRng If cell.Value <= 0 Then cell.Value = Abs(cell) End If Next cell Next X End Sub -- RyGuy "TJR" wrote: I am downloading banking inofrmation to a spreadsheet. It downloads as a negitive value. Is there a way to automaticly change this? |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Change cell value from positive to negative | Excel Discussion (Misc queries) | |||
Change negative amount to positive. | New Users to Excel | |||
change cell from negative to positive | Excel Discussion (Misc queries) | |||
How to change negative to positive | Excel Worksheet Functions | |||
How can I change positive numbers to negative, i.e. change 50 to - | Excel Discussion (Misc queries) |