Thema Datum  Von Nutzer Rating
Antwort
21.04.2015 20:19:25 soeuvia
NotSolved
Blau Bedingte Formatierung in Makro
21.04.2015 21:52:08 Gast74041
Solved
22.04.2015 18:46:50 soeuvia
NotSolved

Ansicht des Beitrags:
Von:
Gast74041
Datum:
21.04.2015 21:52:08
Views:
780
Rating: Antwort:
 Nein
Thema:
Bedingte Formatierung in Makro
With Range("O4:O100")
    .FormatConditions.Add Type:=xlExpression, Formula1:= _
        "=ISTZAHL(O4)"
    .FormatConditions(.FormatConditions.Count).SetFirstPriority
    With .FormatConditions(1).Font
        .Bold = True
        .Italic = False
        .TintAndShade = 0
    End With
    .FormatConditions(1).StopIfTrue = False
End With
With Range("M4:M100")
    .FormatConditions.Add Type:=xlExpression, Formula1:= _
        "=ISTZAHL(O4)=Falsch"
    .FormatConditions(.FormatConditions.Count).SetFirstPriority
    With .FormatConditions(1).Font
        .Bold = True
        .Italic = False
        .TintAndShade = 0
    End With
    .FormatConditions(1).StopIfTrue = False
End With
With Range("K4:K100")
    .FormatConditions.Add Type:=xlExpression, Formula1:= _
        "=ISTZAHL(M4)=Falsch"
    .FormatConditions(.FormatConditions.Count).SetFirstPriority
    With .FormatConditions(1).Font
        .Bold = True
        .Italic = False
        .TintAndShade = 0
    End With
    .FormatConditions(1).StopIfTrue = False
End With

 


Ihre Antwort
  • Bitte beschreiben Sie Ihr Problem möglichst ausführlich. (Wichtige Info z.B.: Office Version, Betriebssystem, Wo genau kommen Sie nicht weiter)
  • Bitte helfen Sie ebenfalls wenn Ihnen geholfen werden konnte und markieren Sie Ihre Anfrage als erledigt (Klick auf Häckchen)
  • Bei Crossposting, entsprechende Links auf andere Forenbeiträge beifügen / nachtragen
  • Codeschnipsel am besten über den Code-Button im Text-Editor einfügen
  • Die Angabe der Emailadresse ist freiwillig und wird nur verwendet, um Sie bei Antworten auf Ihren Beitrag zu benachrichtigen
Thema: Name: Email:



  • Bitte beschreiben Sie Ihr Problem möglichst ausführlich. (Wichtige Info z.B.: Office Version, Betriebssystem, Wo genau kommen Sie nicht weiter)
  • Bitte helfen Sie ebenfalls wenn Ihnen geholfen werden konnte und markieren Sie Ihre Anfrage als erledigt (Klick auf Häckchen)
  • Bei Crossposting, entsprechende Links auf andere Forenbeiträge beifügen / nachtragen
  • Codeschnipsel am besten über den Code-Button im Text-Editor einfügen
  • Die Angabe der Emailadresse ist freiwillig und wird nur verwendet, um Sie bei Antworten auf Ihren Beitrag zu benachrichtigen

Thema Datum  Von Nutzer Rating
Antwort
21.04.2015 20:19:25 soeuvia
NotSolved
Blau Bedingte Formatierung in Makro
21.04.2015 21:52:08 Gast74041
Solved
22.04.2015 18:46:50 soeuvia
NotSolved