Skip to content

Instantly share code, notes, and snippets.

@ndthanh
Created July 22, 2017 17:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ndthanh/04756b9385045190020327bee2b8a8ef to your computer and use it in GitHub Desktop.
Save ndthanh/04756b9385045190020327bee2b8a8ef to your computer and use it in GitHub Desktop.
Sub ChangeToNegative()
'Updateby20131113
Dim rng As Range
Dim WorkRng As Range
On Error Resume Next
xTitleId = "Hoc Excel Online"
Set WorkRng = Application.Selection
Set WorkRng = Application.InputBox("Range", xTitleId, WorkRng.Address, Type:=8)
Set WorkRng = WorkRng.SpecialCells(xlCellTypeConstants, xlNumbers)
For Each rng In WorkRng
xValue = rng.Value
If xValue > 0 Then
rng.Value = xValue * -1
End If
Next
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment