Hi
Ok, on your selected sheet, right click on the tab, view code and enter
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
subtot = 0
If Target.Cells.Count = 1 And Target.Address = "$C$2" Then
subtot = subtot + Application.InputBox("Enter Soft Costs", Type:=1)
subtot = subtot + Application.InputBox("Enter Hard Costs", Type:=1)
subtot = subtot + Application.InputBox("Enter Improvements", Type:=1)
Target.Value = subtot
End If
End Sub
Now when you select cell C2, it will ask for the 3 numbers, accumulate them, and put the result into C2.
You don't say where your output is to go, so I've just picked a cell.
rylo
Bookmarks