Hallo liebes Forum,
ich habe 2 Spalten (24 und 5) . Wenn in 24 entweder das Wort "Development" oder "Process Change" vorkommt (egal ob einzeln oder mit anderen Begriffen) , dann soll in 5 "tbd" stehen. Wenn dies nicht der Fall ist, dann soll dort "-" stehen.
Hier ist der Code:
'Check if Type of Implementation contains Development, if not FC date can be set to ---
If InStr(1, .Cells(i, 24), "Development") = 0 Then
.Cells(i, 5).Value = "-"
.Cells(i, 5).HorizontalAlignment = xlCenter
'If Type of Implementation contains Development set date to 'tbd'
Else
.Cells(i, 5).Value = "tbd"
.Cells(i, 5).HorizontalAlignment = xlCenter
.Cells(i, 5).Font.Color = RGB(0, 0, 0)
Bisher hat es nur mit einer Bedingung funktioniert, ich weiß nun aber nicht, wie ich das "oder" formulieren soll.
Es wäre sehr nett, wen ihr mir helfen könntet!
Danke im Voraus:)
|