Good morning Glooms
...and welcome to the forum!!

Originally Posted by
Glooms
....But what I want to do is perform this same action on all the cells I have selected. Is there some function to do this? I have tried searching around the board and on the internet but havent found anything to help me out with this specific thing.
The code shown below should help you. Notice how you don't actually have to select the cell to work on it - just specifying it will be necessary. In the instance below it is part of the range variable.
Sub test()
Dim UsrCell As Range
For Each UsrCell In Selection
MsgBox TypeName(UsrCell)
UsrCell.Value = UsrCell.Value * -1
Next UsrCell
End Sub
Pleasew try and remember to wrap any code you have posted in the code tags (use the # button) next timne you post.
HTH
DominicB
Bookmarks