FAQ Access – Bedingte Formatierung per VBA
Access VBA – Bedingte Formatierung per VBA
Problem
Sie möchten die bedingte Formatierung eines Formularfeldes per VBA einstellen
Lösung
Folgenden Code packen Sie bitte in das Form_Open Ereignis (Auch bei UF)
With AETEXT.FormatConditions.Add(acExpression, acEqual, "FKAEMENR.column(3)<>1")
.Enabled = False
End With