Sehr geehrtes TechTeam,
ich hoffe das ihr mir helfen könnt, ich versuche über Powershell ein Script zu erstellen und komme nicht weiter.
Ich habe 4 Daten von Excel die in eine Umgewandelt werden soll, so dass man eine Excel Datei hat mit 4 Arbeitsmappen.
Mein Script öffnet leider alles nur einzeln.
$Excel = New-Object -Comobject Excel.Application
$Excel.Visible = $true
$Filepath = "D:\Data\bs000dp7u\Desktop\Excel\S6.xlsx"
$Workbook = $Excel.Workbooks.Open($Filepath)
$Filepath = "D:\Data\bs000dp7u\Desktop\Excel\S9.xlsx"
$Workbook = $Excel.Workbooks.Open($Filepath)
$Filepath = "D:\Data\bs000dp7u\Desktop\Excel\s11.xlsx"
$Workbook = $Excel.Workbooks.Open($Filepath)
$Filepath = "D:\Data\bs000dp7u\Desktop\Excel\S12.xlsx"
$Workbook = $Excel.Workbooks.Open($Filepath)
Ist es zufällig auch möglich das man in Spalte C zwei zahlen hat z.b. 0 und 100 und sagt das die 0 Rot und die 100 Grün angezeigt wird also das Kästchen oder die Zeile.
Vielen dank für die Hilfe schonmal