Hi,
Kann ich innerhalb einer with funktion auch Code verwenden? oder kann ich nur die unterpunkte zuweisen.
Also kann ich zum beispiel folgendes machen:
Option Explicit
sub nutzlos()
dim i as integer
dim intA as integer
dim wks1 As Worksheet, wks2 as worksheet
set wks1 = Worksheets("mappe1")
set wks2 = Worksheets("mappe2")
intA = 42
with wks1
if .cells(1.1).value = intA then
for i = 1 to 100
.Cells(1,i).value= intA
next i
end if
end with
end sub
oder muss ich das with in die schleife tun.
For i = 1 To 5
With wks2.Cells(intA, i)
.Interior.ColorIndex = 6
.Interior.Pattern = xlSolid
.Font.Bold = True
End With
Next i
Ja ich weiß, dass oben keinen Sinn macht, das with zu verwenden, aber mir gehts um prinzip.