Sheets(
"Tabelle3"
).
Select
Sheets(
"Tabelle3"
).Range(
"A1"
).
Select
ActiveCell.FormulaR1C1 =
"Isolationswiderstand"
Sheets(
"Tabelle3"
).Range(
"A2"
).
Select
ActiveCell.FormulaR1C1 =
"=VALUE(Tabelle1!RC23)"
Sheets(
"Tabelle3"
).Range(
"A2"
).
Select
Selection.AutoFill Destination:=Sheets(
"Tabelle3"
).Range(
"A2:A157"
), Type:=xlFillDefault
Sheets(
"Tabelle3"
).Range(
"A2:A157"
).
Select
Dim
Zelle
As
Range
For
Each
Zelle
In
Selection
If
Zelle.HasFormula =
True
Then
Zelle.Formula = Application.ConvertFormula(Zelle.Formula, xlA1, , xlAbsolute)
End
If
Next
Next
If
Cells(i,
"A"
).Value = 0#
Then
Rows(i).EntireRow.Delete
End
If
Sheets(
"Tabelle1"
).
Select
End
Sub