Thema Datum  Von Nutzer Rating
Antwort
10.05.2012 13:01:56 Dakarus
NotSolved
10.05.2012 21:05:23 Hauke
*****
Solved
12.05.2012 12:37:41 Brumms
NotSolved
25.05.2012 11:48:21 Gast91480
NotSolved
25.05.2012 17:44:05 Brumms
Solved
Blau Logfile einlesen
30.05.2012 09:57:44 Dakarus
NotSolved

Ansicht des Beitrags:
Von:
Dakarus
Datum:
30.05.2012 09:57:44
Views:
1309
Rating: Antwort:
  Ja
Thema:
Logfile einlesen

Ok ich krieg nun wircklich alles so hin wie ich will bis auf diese dämliche umstellung von Text auf Nummer (Double wäre glaub ideal)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
Public Sub Abrechnung()
' loadInput
    Dim filename    As String
    Dim wks         As Worksheet
    filename = "C:\Temp\TEST-PCOUNTER.txt"
    Sheets("Tabelle1").Select
    Set wks = ActiveSheet
    With wks.QueryTables.Add(Connection:="TEXT;" & filename, Destination:=wks.Range("$A$1"))
        .Name = "LogQuery"
        .RefreshStyle = xlInsertDeleteCells
        .AdjustColumnWidth = True
        .TextFilePromptOnRefresh = False
        .TextFileStartRow = 1
        .TextFileParseType = xlDelimited
        .TextFileTextQualifier = xlTextQualifierDoubleQuote
        .TextFileCommaDelimiter = True
        .TextFileColumnDataTypes = Array(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)
        .Refresh BackgroundQuery:=False
    End With
 
' addFilter()
    Rows("1:1").Select
    Selection.Insert Shift:=xlDown, CopyOrigin:=xlFormatFromLeftOrAbove
    Rows("1:1").Select
    Selection.AutoFilter
    Range("B1").Select
    ActiveSheet.Range("$A$1:$N$285").AutoFilter Field:=2, Criteria1:="=*Deposit:*", Operator:=xlOr
 
 
'copyRows()
    Columns("B:B").Select
    Application.CutCopyMode = False
    Selection.Copy
    Sheets("Tabelle2").Select
    Columns("A:A").Select
    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
        :=False, Transpose:=False
    Sheets("Tabelle1").Select
    Columns("D:E").Select
    Application.CutCopyMode = False
    Selection.Copy
    Sheets("Tabelle2").Select
    Columns("B:C").Select
    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
        :=False, Transpose:=False
    Sheets("Tabelle1").Select
    Columns("M:M").Select
    Selection.Replace What:=".", Replacement:=",", LookAt:=xlPart, _
    SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
    ReplaceFormat:=False
    Range("M1:M300").Select
    Application.CutCopyMode = False
    Selection.Copy
    Sheets("Tabelle2").Select
    Columns("D:D").Select
    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
        :=False, Transpose:=False
 
' Formatieren()
     
    Columns("A:A").Select
    Application.CutCopyMode = False
    Selection.NumberFormat = "@"
     
    Columns("B:B").Select
    Selection.NumberFormat = "m/d/yyyy"
     
    Columns("C:C").Select
    Selection.NumberFormat = "h:mm;@"
    
    Columns("D:D").Select
    Selection.NumberFormat = "#,##0.00 €"
    Range("D7").Select
 
' addSumme()
    Range("E2").Select
    Selection.NumberFormat = "#,##0.00 €"
    Selection.Borders(xlDiagonalDown).LineStyle = xlNone
    Selection.Borders(xlDiagonalUp).LineStyle = xlNone
    Selection.Borders(xlEdgeLeft).LineStyle = xlNone
    With Selection.Borders(xlEdgeTop)
        .LineStyle = xlContinuous
        .ColorIndex = 0
        .TintAndShade = 0
        .Weight = xlThin
    End With
    With Selection.Borders(xlEdgeBottom)
        .LineStyle = xlDouble
        .ColorIndex = 0
        .TintAndShade = 0
        .Weight = xlThick
    End With
    Selection.Borders(xlEdgeRight).LineStyle = xlNone
    Selection.Borders(xlInsideVertical).LineStyle = xlNone
    Selection.Borders(xlInsideHorizontal).LineStyle = xlNone
    ActiveCell.FormulaR1C1 = "=SUM(C[-1])"
    
 
' addTitel()
    Range("A1").Select
    ActiveCell.FormulaR1C1 = "Auflader"
  
    Range("B1").Select
    ActiveCell.FormulaR1C1 = "Datum"
     
    Range("C1").Select
    ActiveCell.FormulaR1C1 = "Uhrzeit"
     
    Range("D1").Select
    ActiveCell.FormulaR1C1 = "Betrag"
     
    Range("E1").Select
    ActiveCell.FormulaR1C1 = "Summe"
     
    Cells.EntireColumn.AutoFit
     
    Range("A1:E1").Select
    Selection.Font.Bold = True
    Selection.Borders(xlDiagonalDown).LineStyle = xlNone
    Selection.Borders(xlDiagonalUp).LineStyle = xlNone
    Selection.Borders(xlEdgeLeft).LineStyle = xlNone
    Selection.Borders(xlEdgeTop).LineStyle = xlNone
    With Selection.Borders(xlEdgeBottom)
        .LineStyle = xlDouble
        .ColorIndex = 0
        .TintAndShade = 0
        .Weight = xlThick
    End With
    Selection.Borders(xlEdgeRight).LineStyle = xlNone
    Selection.Borders(xlInsideVertical).LineStyle = xlNone
    Selection.Borders(xlInsideHorizontal).LineStyle = xlNone
 
' saveFile()
  ChDir "C:\Temp"
  ActiveWorkbook.SaveAs filename:="C:\Temp\" & "Abrechnung_" & Format(Date$, "dd.mm.yy") & ".xls"
End Sub

Das ist mein Code und die Lopgfile

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
DHBW-HEIDENHEIM\cakar,C:\Users\cakar\AppData\Local\Temp\29\CampusNet\tmp_Default_010820111546_343445251839818CAKAR@DHBW-LOCALDHBW.doc,\\PR-STAFF\sm110pr01,03/08/2011,11:33,\\sm110pc02,,,A4,/C/Jt=4/Cp=1/Ts=4E3915E4/ID=305,66017,1,0.10,0.00
DHBW-HEIDENHEIM\e-jg8439,Deposit: A01-03/08/2011-11:35:59-3,NT-AUTORITÄT\SYSTEM,03/08/2011,11:36,\\PR-EDU,,,,/Ts=4E39169E,,,3.00,3.21
DHBW-HEIDENHEIM\durner,Microsoft Word - Zulassung an Firma DHBW.doc,\\PR-STAFF\sm110pr01,03/08/2011,11:37,\\sm110pc02,,,A4,/C/Jt=4/Cp=1/Ts=4E3916F0/ID=306,66975,1,0.10,0.00
DHBW-HEIDENHEIM\durner,Microsoft Word - Zulassung an Student DHBW.doc,\\PR-STAFF\sm110pr01,03/08/2011,11:38,\\sm110pc02,,,A4,/C/Jt=4/Cp=1/Ts=4E391704/ID=307,67185,1,0.10,0.00
DHBW-HEIDENHEIM\durner,Microsoft Word - Zulassung an Student DHBW.doc,\\PR-STAFF\sm110pr01,03/08/2011,11:38,\\sm110pc02,,,A4,/C/Jt=4/Cp=1/Ts=4E391715/ID=308,67635,1,0.10,0.00
DHBW-HEIDENHEIM\durner,Microsoft Word - Zulassung an Firma DHBW.doc,\\PR-STAFF\sm110pr01,03/08/2011,11:38,\\sm110pc02,,,A4,/C/Jt=4/Cp=1/Ts=4E39171C/ID=309,68048,1,0.10,0.00
DHBW-HEIDENHEIM\durner,Microsoft Word - Zulassung an Firma DHBW.doc,\\PR-STAFF\sm110pr01,03/08/2011,11:38,\\sm110pc02,,,A4,/C/Jt=4/Cp=1/Ts=4E391726/ID=30A,67118,1,0.10,0.00
DHBW-HEIDENHEIM\durner,Microsoft Word - Zulassung an Student DHBW.doc,\\PR-STAFF\sm110pr01,03/08/2011,11:38,\\sm110pc02,,,A4,/C/Jt=4/Cp=1/Ts=4E391730/ID=30B,67313,1,0.10,0.00
DHBW-HEIDENHEIM\durner,Microsoft Word - Zulassung an Student DHBW.doc,\\PR-STAFF\sm110pr01,03/08/2011,11:39,\\sm110pc02,,,A4,/C/Jt=4/Cp=1/Ts=4E391737/ID=30C,66463,1,0.10,0.00
DHBW-HEIDENHEIM\durner,Microsoft Word - Zulassung an Firma DHBW.doc,\\PR-STAFF\sm110pr01,03/08/2011,11:39,\\sm110pc02,,,A4,/C/Jt=4/Cp=1/Ts=4E39173E/ID=30D,67896,1,0.10,0.00
DHBW-HEIDENHEIM\e-jg8439,Copier job,\\PR-EDU\ew331pr01,03/08/2011,11:39:27,,,,A4,/Jt=101/Cp=1/Ts=4E39174F,0,10,0.30,2.91
DHBW-HEIDENHEIM\e-jg8439,Copier job,\\PR-EDU\ew331pr01,03/08/2011,11:41:17,,,,A4,/Jt=101/Cp=1/Ts=4E3917BD,0,6,0.18,2.73
DHBW-HEIDENHEIM\thanel,Re: Antrag Fristverlängerung Bachelorarbeit,\\PR-STAFF\sm310pr01,03/08/2011,11:41,\\sm310pc02,,,A4,/C/Jt=4/Cp=1/Ts=4E3917B8/ID=30E,92309,2,0.20,0.00
DHBW-HEIDENHEIM\malzahn,pdfreport.php.pdf,\\PR-STAFF\sm211pr01,03/08/2011,11:42,\

 


Ihre Antwort
  • Bitte beschreiben Sie Ihr Problem möglichst ausführlich. (Wichtige Info z.B.: Office Version, Betriebssystem, Wo genau kommen Sie nicht weiter)
  • Bitte helfen Sie ebenfalls wenn Ihnen geholfen werden konnte und markieren Sie Ihre Anfrage als erledigt (Klick auf Häckchen)
  • Bei Crossposting, entsprechende Links auf andere Forenbeiträge beifügen / nachtragen
  • Codeschnipsel am besten über den Code-Button im Text-Editor einfügen
  • Die Angabe der Emailadresse ist freiwillig und wird nur verwendet, um Sie bei Antworten auf Ihren Beitrag zu benachrichtigen
Thema: Name: Email:



  • Bitte beschreiben Sie Ihr Problem möglichst ausführlich. (Wichtige Info z.B.: Office Version, Betriebssystem, Wo genau kommen Sie nicht weiter)
  • Bitte helfen Sie ebenfalls wenn Ihnen geholfen werden konnte und markieren Sie Ihre Anfrage als erledigt (Klick auf Häckchen)
  • Bei Crossposting, entsprechende Links auf andere Forenbeiträge beifügen / nachtragen
  • Codeschnipsel am besten über den Code-Button im Text-Editor einfügen
  • Die Angabe der Emailadresse ist freiwillig und wird nur verwendet, um Sie bei Antworten auf Ihren Beitrag zu benachrichtigen

Thema Datum  Von Nutzer Rating
Antwort
10.05.2012 13:01:56 Dakarus
NotSolved
10.05.2012 21:05:23 Hauke
*****
Solved
12.05.2012 12:37:41 Brumms
NotSolved
25.05.2012 11:48:21 Gast91480
NotSolved
25.05.2012 17:44:05 Brumms
Solved
Blau Logfile einlesen
30.05.2012 09:57:44 Dakarus
NotSolved