Private Sub Abwesenheit_Click()
Dim Bereich As Range
Set Bereich = Selection
Bereich.Select
For Each i In Bereich
If i.Row > 8 And i.Column > 4 Then
i.Interior.ColorIndex = 9
i.HorizontalAlignment = xlCenter
i.Font.Size = 6
i.Font.Name = "Arial"
i.Font.ColorIndex = 2
i.Value = "A"
End If
End Sub
Private Sub Abwesenheit_Click()
ComboBox1.Visible = True
ComboBox1.Top = Selection.Cells(1).Top
ComboBox1.Left = Selection.Cells(1).Left
End SubPrivate Sub ComboBox1_Change()
Selection = ComboBox1
ComboBox1.Visible = False
End Sub
Dropdown Auswahlliste in Zelle
axefg 10.01.2009 - 200 Hits - 4 Antworten
Datei-Name und Pfad von Excel eintragen lassen
Bird03 31.12.2009 - 328 Hits - 8 Antworten
Textbox Eingabe in Tabelle2 eintragen
clancy 09.02.2010 - 334 Hits - 5 Antworten