Put 10 in let's say A1, put 3 in a cell somewhere else, copy the cell with
3,
select A1 and do edit>paste special and check divide. If you want any number
you enter in A1
to be divided by 3 use this macro, right click the sheet tab and paste in
this
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
If Intersect(Range("A1"), Target) Is Nothing Then Exit Sub
Application.EnableEvents = False
Target.Value = Target.Value / 3
Application.EnableEvents = True
End Sub
--
Regards,
Peo Sjoblom
Hutch said:
Is it possible to enter a number into a cell and have it automatically
divide the number by a set number? For example:
I enter 10 and want it to divide by 3. Anyone's help would be
appreciated.