You can go to Tools > Macro > Macros > click once on the macro > OPTIONS and assign the macro a keyboard shortcut, then run it that way.

More:
Application.ScreenUpdating = False

Sheets("For Database").Range("A2:H21").Copy
With Sheets("Sales Database")
    .Range("A" & .Rows.Count).End(xlUp).Offset(1).PasteSpecial xlPasteValues
    .UsedRange.Value = .UsedRange.Value
End With

Application.CutCopyMode = False
Application.ScreenUpdating = True
Beep