dimension.xls.vb 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. Private Function EbenenFuellen()
  2. Dim headRow1, headRowN, headCol1, headColN, dataRow1, dataRowN, dataCol1, dataColN As Integer
  3. headCol1 = 1
  4. If Cells(9, 1).Value Like "*Schicht*" Then
  5. headRow1 = 10
  6. Else
  7. headRow1 = 8
  8. End If
  9. dataRow1 = headRow1
  10. Do
  11. dataRow1 = dataRow1 + 1
  12. Loop Until Cells(dataRow1, headCol1).Value <> ""
  13. headRowN = dataRow1 - 1
  14. dataCol1 = headCol1
  15. Do
  16. dataCol1 = dataCol1 + 1
  17. Loop Until IsNumeric(Cells(dataRow1, dataCol1).Value)
  18. headColN = dataCol1 - 1
  19. dataRowN = dataRow1
  20. Do While Cells(dataRowN + 1, dataCol1).Value <> ""
  21. dataRowN = dataRowN + 1
  22. Loop
  23. dataColN = dataCol1
  24. Do While Cells(dataRow1, dataColN + 1).Value <> ""
  25. dataColN = dataColN + 1
  26. Loop
  27. Dim c, r As Integer
  28. Dim txt As String
  29. Rem Zeilen füllen
  30. For c = headCol1 To headColN
  31. txt = ""
  32. For r = dataRow1 To dataRowN
  33. If Cells(r, c).Value = "" Then
  34. If c > headCol1 And r > dataRow1 Then
  35. If Cells(r, c - 1).Value <> Cells(r - 1, c - 1).Value Then
  36. txt = Cells(r, c - 1).Value
  37. End If
  38. End If
  39. Cells(r, c).Value = txt
  40. Else
  41. txt = Cells(r, c).Value
  42. End If
  43. Next r
  44. Next c
  45. Rem Spalten füllen
  46. For r = headRow1 To headRowN
  47. txt = ""
  48. For c = dataCol1 To dataColN
  49. If Cells(r, c).Value = "" Then
  50. If c > dataCol1 And r > headRow1 Then
  51. If Cells(r - 1, c).Value <> Cells(r - 1, c - 1).Value Then
  52. txt = Cells(r - 1, c).Value
  53. End If
  54. End If
  55. Cells(r, c).Value = txt
  56. Else
  57. txt = Cells(r, c).Value
  58. End If
  59. Next c
  60. Next r
  61. End Function
  62. Sub Workflow(datei As String)
  63. Dim Current As Worksheet
  64. Workbooks.Open Filename:=datei
  65. For Each Current In Worksheets
  66. Current.Select
  67. EbenenFuellen
  68. Next
  69. ActiveWorkbook.Save
  70. Application.Quit
  71. End Sub
  72. Sub Makro1()
  73. Workflow ActiveWorkbook.Path + "\FIBU_Gebrauchtwagen.xls"
  74. End Sub