Hello everybody,
I am a newbie to Vba and I wonder if someone can help me with a little problem? I would like a message box that will display the sum of all the items in a selection I have come thus far:
Code
Sub SumAmount()
'
Dim summ As Range
Set summ = Selection
For Each summ In Selection
'?
'?
Next summ
Msgbox summ
Set summ = Nothing
End Sub
Display More
Happy for any help :thanx: