You can put 1.5 in a blank cell, copy it, and then paste-special using multiply over your entries.
type 1.5 in a cell\copy\highlight data\paste special\values
erm..that's paste special\multiply :P
Don't forget to hit Multiply!!!
Hi
Assuming all OT is in Column A Then try this:
Put this code on the sheet code that you want it to trigger for.
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 1 Then 'This will check Column A only
Application.EnableEvents = False 'Turn off events so it wont recalculate forever
Target.Value = Target.Value * 1.5
Application.EnableEvents = True 'Turn events back on so it will check on the next change
Else
End If
End Sub
HTH
Jacob
Aloha Guys,
Thanks for the quick response!
Jacob, I'm a newbie at Macros and would like to avoid using it, although it does work. This worksheet is a shared folder used by many.
Adam and Scott, Is there a way I can formulate each cell (without using a macro) that when the user enters 8 it automatically inputs 12 after leaving the cell?
Thanks....Brian
Re: Jacob, Adam, and Scott
Brian, Without Vb, I'm not sure this can be done; although there are a lot of people on this board with amazing talents, and maybe they know something. If so, I'd love to learn too.....
Scott