View Single Post
 
Old 03-04-2014, 04:33 PM
macropod's Avatar
macropod macropod is offline Windows 7 32bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,363
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

Try a macro coded along the lines of:
Code:
Sub AddDept()
With ActiveSheet
  With .Range("A" & .Cells.SpecialCells(xlCellTypeLastCell).Row + 1)
    .Value = "Dept 7"
    With .Font
      .Bold = True
      .ColorIndex = 3
    End With
    .Interior.ColorIndex = 6
  End With
End With
End Sub
You could simply assign a shortcut key to the macro, without the need for a button.
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote