<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Thema "Datenimport aus pds Handwerkersoftware" in Betriebliches Rechnungswesen</title>
    <link>https://www.datev-community.de/t5/Betriebliches-Rechnungswesen/Datenimport-aus-pds-Handwerkersoftware/m-p/140794#M21952</link>
    <description>&lt;P&gt;Sieht die CSV-Datei so aus?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="grafik.png"&gt;&lt;img src="https://www.datev-community.de/t5/image/serverpage/image-id/8737i4E76F24D9B61AB53/image-size/medium?v=v2&amp;amp;px=400" alt="grafik.png" title="grafik.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Bei meinem Mandanten waren es immer drei Zeilen.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hier mein Konvertierungstool (natürlich wieder VBSript):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="cpp"&gt;Option Explicit

Dim objExcel
Dim objNetwork
Dim sUser
Dim objFSO
Dim RunDir
Dim sCheckValue

Dim cSumNetto
Dim cSumUSt
Dim cSumBrutto

Set objNetwork = CreateObject("WScript.Network")
sUser=objNetwork.UserName

Set objFSO = CreateObject("Scripting.FileSystemObject")

On Error Resume Next

MsgBox "Öffnen Sie bitte das Rechnungsausgangsbuch in Excel und fahren Sie fort.",vbYesNo , "Konvertieren Excel-RAB"


Set objExcel = GetObject(,"Excel.Application")
objExcel.Visible = True


'Excel-Makro

Dim shtSource
Dim shtTarget
Dim iRow , iRowTarget
Dim dDate
Dim iColKredit 
Dim sTmp, sTmp1
Dim blnStop
Dim iGS

	Const xlSortOnValues =0
	Const xlAscending =1
	Const xlSortNormal =0

    const xlEdgeTop =8
	Const xlEdgeBottom =9
	Const xlContinuous =1

	Const xlRight =-4152
	Const xlDouble=-4119
	Const xlThick =4
	Const xlThin =2
	Const xlContext=-5002
	Const xlUnderlineStyleNone=-4142
	Const xlThemeFontNone=0


Dim FiBu_Lauf
FiBu_Lauf = InputBox("Geben Sie den FiBu-Monat ein (MM/JJJJ)!","Abfrage FiBu-Monat")


objExcel.Application.DisplayAlerts = False

If SheetEx("FiBu") = True Then
    objExcel.Sheets("FiBu").Delete
End If

Set shtSource = objExcel.ActiveSheet
shtSource.Columns("A:A").RowHeight = 15
shtSource.cells(1,1).select


objExcel.Sheets.Add
Set shtTarget = objExcel.ActiveWorkbook.Sheets(1)

shtTarget.Name = "FiBu"
iRowTarget = 1
With shtTarget

	
    .Cells(iRowTarget, 1).Value = "RGID"
    .Cells(iRowTarget, 2).Value = "BelegNr1"
    .Cells(iRowTarget, 3).Value = "GKtoNr"
    .Cells(iRowTarget, 4).Value = "Kundenbezeichnung"
    .Cells(iRowTarget, 5).Value = "Datum"
    .Cells(iRowTarget, 6).Value = "Netto"
    .Cells(iRowTarget, 7).Value = "USt"
    .Cells(iRowTarget, 8).Value = "Betrag"
    .Cells(iRowTarget, 9).Value = "Kto"
    
    .Columns("E").NumberFormat = "m/d/yyyy"
    .Columns("D").NumberFormat = "#,##0.00"
    .Columns("F").NumberFormat = "#,##0.00"
    .Columns("G").NumberFormat = "#,##0.00"
    .Columns("H").NumberFormat = "#,##0.00"
    
	  With .Range(.Cells(1, 1), .Cells(1, 9)).Borders(xlEdgeBottom)
	                .LineStyle = xlContinuous
	                .ColorIndex = 0
	                .TintAndShade = 0
	                .Weight = xlThin
	  End With
End With

cSumBrutto=0
cSumNetto=0
cSumUSt=0

Const cRGNr=3
Const cKonto=4
Const cKdnr=5
Const cStorno=7
Const cDatum=8
Const cText=9
Const cNetto=10
Const cUSt=11
Const cBrutto=12
Const cVorgang=13

cSumNetto=shtSource.Cells(2, cNetto).Value
cSumUSt=shtSource.Cells(2, cUSt).Value
cSumBrutto=shtSource.Cells(2, cBrutto).Value

iRow =2
blnStop=False
iGS=-1
Dim lColBrutto

Dim Kunden
Dim sKundenText
If objFSO.FileExists(objExcel.ActiveWorkbook.Path &amp;amp; "\Kunden.csv") then objfso.DeleteFile(objExcel.ActiveWorkbook.Path &amp;amp; "\Kunden.csv")
Set Kunden = objFSO.OpenTextFile(objExcel.ActiveWorkbook.Path &amp;amp; "\Kunden.csv",2,True)

shtSource.Activate

    Do While blnStop = False

	If shtSource.Cells(iRow, 3).Text&amp;lt;&amp;gt;"" then
            
            With shtTarget
					iRowTarget = iRowTarget + 1
                    .Cells(iRowTarget, 2).Value = shtSource.Cells(iRow, cRGNr).Value
                    .Cells(iRowTarget, 3).Value = shtSource.Cells(iRow, cKdnr).Value
                    .Cells(iRowTarget, 4).Value = shtSource.Cells(iRow, cText).Value
					
					'Kundenliste
					sKundenText= shtSource.Cells(iRow, cKdnr).Value &amp;amp; ";" &amp;amp; shtSource.Cells(iRow, cText).Value
				    Kunden.Writeline sKundenText
					
                    .Cells(iRowTarget, 5).Value = CDate(shtSource.Cells(iRow, cDatum).Value)
                    .Cells(iRowTarget, 6).Value = shtSource.Cells(iRow, cNetto).Value*iGS
                    .Cells(iRowTarget, 7).Value = shtSource.Cells(iRow, cUSt).Value*iGS
                    .Cells(iRowTarget, 8).Value = shtSource.Cells(iRow, cBrutto).Value*iGS
                    
                    
					'Kontierungsvorbelegung
                    If CCur(shtSource.Cells(iRow, cUSt).Value)=0 Then
                    	If InStr(shtSource.Cells(iRow, cKonto),"4401",1)&amp;gt; 0 Then
							.Cells(iRowTarget, 1).Value= "4401 - Abschlag"
                    		.Cells(iRowTarget, 9).Value = "3250"
                    	Else
							.Cells(iRowTarget, 1).Value= shtSource.Cells(iRow, cKonto).Value &amp;amp; " - Rechnung"
                    		.Cells(iRowTarget, 9).Value = "4337"
                    	End If
                    Else
                    	If InStr(shtSource.Cells(iRow, cKonto),"4401",1)&amp;gt; 0 Then
							.Cells(iRowTarget, 1).Value= "4401 - Abschlag"
                    		.Cells(iRowTarget, 9).Value = "3272"
                    	Else
                    		.Cells(iRowTarget, 1).Value= shtSource.Cells(iRow, cKonto).Value &amp;amp; " - Rechnung"
                    		.Cells(iRowTarget, 9).Value = "4400"
						End If                    		
                    End if
          	End With          
        
	End If        
                iRow=iRow+1
                blnStop = (shtSource.Cells(iRow, 1).Value="")

    Loop


    With shtTarget
    	.Columns("A").EntireColumn.AutoFit
    	.Columns("D").EntireColumn.AutoFit
	End With
	
	Kunden.close
    shtTarget.Activate
    

objExcel.Application.DisplayAlerts = False

Dim sFile
Const xlCSV = 6
Const xlOpenXMLWorkbook=51

objExcel.Application.StatusBar = sMessage  &amp;amp; " / RAB wird unter gespeichtert  '" &amp;amp; sFile &amp;amp; "' gespeichert!"
sFile =objExcel.ActiveWorkbook.Path &amp;amp; "\RAB " &amp;amp;  Left(FiBu_Lauf,2) &amp;amp; "-" &amp;amp; Right(FiBu_Lauf,4)
objExcel.ActiveWorkbook.SaveAs sFile,xlOpenXMLWorkbook				'51

Function SheetEx(strNam)
   On Error Resume Next
   SheetEx = objExcel.Sheets(strNam).Index &amp;gt; 0
End Function



 'WScript.Echo GetExcelCol(50,False)
   Public Function GetExcelCol(lIdx, bInitialCall)
	     If (bInitialCall) Then lIdx = lIdx + 1
	     If (lIdx = 0) Then Exit Function
	    GetExcelCol = GetExcelCol((lIdx - 1) \ 26, False) + Chr(65 + (lIdx - 1) Mod 26)
  End Function
  
  'WScript.Echo GetIndexOfExcelCol("AX", 0,False)
   Public Function GetIndexOfExcelCol(ByVal strCol, ByVal slevel, ByVal bInitialCall)
	   Dim tInitialCall	
	   If (CInt(slevel) = Len(strCol)) Then Exit Function
		  
	   If CBool(bInitialCall)	= True Then
		   		tInitialCall=-1
		   Else
		   		tInitialCall=0
	   End if
	   GetIndexOfExcelCol = GetIndexOfExcelCol(strCol,CInt(slevel) + 1, False) + ((Asc(Mid(strCol, Len(strCol) - CInt(slevel), 1)) - 65) + 1) * 26 ^ CInt(slevel) + CLng(tInitialCall)
    
   End Function&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Und das Ergebnis sieht dann so aus:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="grafik.png"&gt;&lt;img src="https://www.datev-community.de/t5/image/serverpage/image-id/8739iE702B0500C3855DE/image-size/medium?v=v2&amp;amp;px=400" alt="grafik.png" title="grafik.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Es wird auch automatisch eine Kundenliste erstellt, damit man die Kontenbeschriftung mit importieren kann (ASCII-Format).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Den Code einfach kopieren und in eine Textdatei kopieren und als *.vbs speichern. Anschließend einfach die Excel-Datei öffnen und das Tool per Doppelklick starten.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Im Pfad der VBS-Datei wird alles gespeichert.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sollte klappen, ansonsten einfach hier melden.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gruß Achilleus&lt;/P&gt;</description>
    <pubDate>Thu, 12 Mar 2020 14:23:41 GMT</pubDate>
    <dc:creator>Gelöschter Nutzer</dc:creator>
    <dc:date>2020-03-12T14:23:41Z</dc:date>
    <item>
      <title>Datenimport aus pds Handwerkersoftware</title>
      <link>https://www.datev-community.de/t5/Betriebliches-Rechnungswesen/Datenimport-aus-pds-Handwerkersoftware/m-p/140769#M21943</link>
      <description>&lt;P&gt;Hallo!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unser Mandant ist Selbstbuche und nutzt die pds Handwerkersoftware.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Nach Rücksprache mit deren System-Partner wurde uns eine csv-Datei zur Verfügung gestellt, die jedoch keine Bruttoverbuchung ausweist. Das bedeutet, je Buchungsvorgang werden mind. 2 Buchungszeilen, mit umsatzsteuerlichen Sachverhalt 3 Buchungszeilen ausgewiesen.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hat jemand Erfahrung mit dem Import von Daten aus der pds Handwerkersoftware und kann ggf kurz erläutern, wie die Daten importiert werden können.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Danke!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;B. Noe&lt;/P&gt;</description>
      <pubDate>Thu, 12 Mar 2020 13:49:14 GMT</pubDate>
      <guid>https://www.datev-community.de/t5/Betriebliches-Rechnungswesen/Datenimport-aus-pds-Handwerkersoftware/m-p/140769#M21943</guid>
      <dc:creator>rotax_noe</dc:creator>
      <dc:date>2020-03-12T13:49:14Z</dc:date>
    </item>
    <item>
      <title>Datenimport aus pds Handwerkersoftware</title>
      <link>https://www.datev-community.de/t5/Betriebliches-Rechnungswesen/Datenimport-aus-pds-Handwerkersoftware/m-p/140794#M21952</link>
      <description>&lt;P&gt;Sieht die CSV-Datei so aus?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="grafik.png"&gt;&lt;img src="https://www.datev-community.de/t5/image/serverpage/image-id/8737i4E76F24D9B61AB53/image-size/medium?v=v2&amp;amp;px=400" alt="grafik.png" title="grafik.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Bei meinem Mandanten waren es immer drei Zeilen.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hier mein Konvertierungstool (natürlich wieder VBSript):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="cpp"&gt;Option Explicit

Dim objExcel
Dim objNetwork
Dim sUser
Dim objFSO
Dim RunDir
Dim sCheckValue

Dim cSumNetto
Dim cSumUSt
Dim cSumBrutto

Set objNetwork = CreateObject("WScript.Network")
sUser=objNetwork.UserName

Set objFSO = CreateObject("Scripting.FileSystemObject")

On Error Resume Next

MsgBox "Öffnen Sie bitte das Rechnungsausgangsbuch in Excel und fahren Sie fort.",vbYesNo , "Konvertieren Excel-RAB"


Set objExcel = GetObject(,"Excel.Application")
objExcel.Visible = True


'Excel-Makro

Dim shtSource
Dim shtTarget
Dim iRow , iRowTarget
Dim dDate
Dim iColKredit 
Dim sTmp, sTmp1
Dim blnStop
Dim iGS

	Const xlSortOnValues =0
	Const xlAscending =1
	Const xlSortNormal =0

    const xlEdgeTop =8
	Const xlEdgeBottom =9
	Const xlContinuous =1

	Const xlRight =-4152
	Const xlDouble=-4119
	Const xlThick =4
	Const xlThin =2
	Const xlContext=-5002
	Const xlUnderlineStyleNone=-4142
	Const xlThemeFontNone=0


Dim FiBu_Lauf
FiBu_Lauf = InputBox("Geben Sie den FiBu-Monat ein (MM/JJJJ)!","Abfrage FiBu-Monat")


objExcel.Application.DisplayAlerts = False

If SheetEx("FiBu") = True Then
    objExcel.Sheets("FiBu").Delete
End If

Set shtSource = objExcel.ActiveSheet
shtSource.Columns("A:A").RowHeight = 15
shtSource.cells(1,1).select


objExcel.Sheets.Add
Set shtTarget = objExcel.ActiveWorkbook.Sheets(1)

shtTarget.Name = "FiBu"
iRowTarget = 1
With shtTarget

	
    .Cells(iRowTarget, 1).Value = "RGID"
    .Cells(iRowTarget, 2).Value = "BelegNr1"
    .Cells(iRowTarget, 3).Value = "GKtoNr"
    .Cells(iRowTarget, 4).Value = "Kundenbezeichnung"
    .Cells(iRowTarget, 5).Value = "Datum"
    .Cells(iRowTarget, 6).Value = "Netto"
    .Cells(iRowTarget, 7).Value = "USt"
    .Cells(iRowTarget, 8).Value = "Betrag"
    .Cells(iRowTarget, 9).Value = "Kto"
    
    .Columns("E").NumberFormat = "m/d/yyyy"
    .Columns("D").NumberFormat = "#,##0.00"
    .Columns("F").NumberFormat = "#,##0.00"
    .Columns("G").NumberFormat = "#,##0.00"
    .Columns("H").NumberFormat = "#,##0.00"
    
	  With .Range(.Cells(1, 1), .Cells(1, 9)).Borders(xlEdgeBottom)
	                .LineStyle = xlContinuous
	                .ColorIndex = 0
	                .TintAndShade = 0
	                .Weight = xlThin
	  End With
End With

cSumBrutto=0
cSumNetto=0
cSumUSt=0

Const cRGNr=3
Const cKonto=4
Const cKdnr=5
Const cStorno=7
Const cDatum=8
Const cText=9
Const cNetto=10
Const cUSt=11
Const cBrutto=12
Const cVorgang=13

cSumNetto=shtSource.Cells(2, cNetto).Value
cSumUSt=shtSource.Cells(2, cUSt).Value
cSumBrutto=shtSource.Cells(2, cBrutto).Value

iRow =2
blnStop=False
iGS=-1
Dim lColBrutto

Dim Kunden
Dim sKundenText
If objFSO.FileExists(objExcel.ActiveWorkbook.Path &amp;amp; "\Kunden.csv") then objfso.DeleteFile(objExcel.ActiveWorkbook.Path &amp;amp; "\Kunden.csv")
Set Kunden = objFSO.OpenTextFile(objExcel.ActiveWorkbook.Path &amp;amp; "\Kunden.csv",2,True)

shtSource.Activate

    Do While blnStop = False

	If shtSource.Cells(iRow, 3).Text&amp;lt;&amp;gt;"" then
            
            With shtTarget
					iRowTarget = iRowTarget + 1
                    .Cells(iRowTarget, 2).Value = shtSource.Cells(iRow, cRGNr).Value
                    .Cells(iRowTarget, 3).Value = shtSource.Cells(iRow, cKdnr).Value
                    .Cells(iRowTarget, 4).Value = shtSource.Cells(iRow, cText).Value
					
					'Kundenliste
					sKundenText= shtSource.Cells(iRow, cKdnr).Value &amp;amp; ";" &amp;amp; shtSource.Cells(iRow, cText).Value
				    Kunden.Writeline sKundenText
					
                    .Cells(iRowTarget, 5).Value = CDate(shtSource.Cells(iRow, cDatum).Value)
                    .Cells(iRowTarget, 6).Value = shtSource.Cells(iRow, cNetto).Value*iGS
                    .Cells(iRowTarget, 7).Value = shtSource.Cells(iRow, cUSt).Value*iGS
                    .Cells(iRowTarget, 8).Value = shtSource.Cells(iRow, cBrutto).Value*iGS
                    
                    
					'Kontierungsvorbelegung
                    If CCur(shtSource.Cells(iRow, cUSt).Value)=0 Then
                    	If InStr(shtSource.Cells(iRow, cKonto),"4401",1)&amp;gt; 0 Then
							.Cells(iRowTarget, 1).Value= "4401 - Abschlag"
                    		.Cells(iRowTarget, 9).Value = "3250"
                    	Else
							.Cells(iRowTarget, 1).Value= shtSource.Cells(iRow, cKonto).Value &amp;amp; " - Rechnung"
                    		.Cells(iRowTarget, 9).Value = "4337"
                    	End If
                    Else
                    	If InStr(shtSource.Cells(iRow, cKonto),"4401",1)&amp;gt; 0 Then
							.Cells(iRowTarget, 1).Value= "4401 - Abschlag"
                    		.Cells(iRowTarget, 9).Value = "3272"
                    	Else
                    		.Cells(iRowTarget, 1).Value= shtSource.Cells(iRow, cKonto).Value &amp;amp; " - Rechnung"
                    		.Cells(iRowTarget, 9).Value = "4400"
						End If                    		
                    End if
          	End With          
        
	End If        
                iRow=iRow+1
                blnStop = (shtSource.Cells(iRow, 1).Value="")

    Loop


    With shtTarget
    	.Columns("A").EntireColumn.AutoFit
    	.Columns("D").EntireColumn.AutoFit
	End With
	
	Kunden.close
    shtTarget.Activate
    

objExcel.Application.DisplayAlerts = False

Dim sFile
Const xlCSV = 6
Const xlOpenXMLWorkbook=51

objExcel.Application.StatusBar = sMessage  &amp;amp; " / RAB wird unter gespeichtert  '" &amp;amp; sFile &amp;amp; "' gespeichert!"
sFile =objExcel.ActiveWorkbook.Path &amp;amp; "\RAB " &amp;amp;  Left(FiBu_Lauf,2) &amp;amp; "-" &amp;amp; Right(FiBu_Lauf,4)
objExcel.ActiveWorkbook.SaveAs sFile,xlOpenXMLWorkbook				'51

Function SheetEx(strNam)
   On Error Resume Next
   SheetEx = objExcel.Sheets(strNam).Index &amp;gt; 0
End Function



 'WScript.Echo GetExcelCol(50,False)
   Public Function GetExcelCol(lIdx, bInitialCall)
	     If (bInitialCall) Then lIdx = lIdx + 1
	     If (lIdx = 0) Then Exit Function
	    GetExcelCol = GetExcelCol((lIdx - 1) \ 26, False) + Chr(65 + (lIdx - 1) Mod 26)
  End Function
  
  'WScript.Echo GetIndexOfExcelCol("AX", 0,False)
   Public Function GetIndexOfExcelCol(ByVal strCol, ByVal slevel, ByVal bInitialCall)
	   Dim tInitialCall	
	   If (CInt(slevel) = Len(strCol)) Then Exit Function
		  
	   If CBool(bInitialCall)	= True Then
		   		tInitialCall=-1
		   Else
		   		tInitialCall=0
	   End if
	   GetIndexOfExcelCol = GetIndexOfExcelCol(strCol,CInt(slevel) + 1, False) + ((Asc(Mid(strCol, Len(strCol) - CInt(slevel), 1)) - 65) + 1) * 26 ^ CInt(slevel) + CLng(tInitialCall)
    
   End Function&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Und das Ergebnis sieht dann so aus:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="grafik.png"&gt;&lt;img src="https://www.datev-community.de/t5/image/serverpage/image-id/8739iE702B0500C3855DE/image-size/medium?v=v2&amp;amp;px=400" alt="grafik.png" title="grafik.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Es wird auch automatisch eine Kundenliste erstellt, damit man die Kontenbeschriftung mit importieren kann (ASCII-Format).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Den Code einfach kopieren und in eine Textdatei kopieren und als *.vbs speichern. Anschließend einfach die Excel-Datei öffnen und das Tool per Doppelklick starten.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Im Pfad der VBS-Datei wird alles gespeichert.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sollte klappen, ansonsten einfach hier melden.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Gruß Achilleus&lt;/P&gt;</description>
      <pubDate>Thu, 12 Mar 2020 14:23:41 GMT</pubDate>
      <guid>https://www.datev-community.de/t5/Betriebliches-Rechnungswesen/Datenimport-aus-pds-Handwerkersoftware/m-p/140794#M21952</guid>
      <dc:creator>Gelöschter Nutzer</dc:creator>
      <dc:date>2020-03-12T14:23:41Z</dc:date>
    </item>
    <item>
      <title>Datenimport aus pds Handwerkersoftware</title>
      <link>https://www.datev-community.de/t5/Betriebliches-Rechnungswesen/Datenimport-aus-pds-Handwerkersoftware/m-p/309848#M43437</link>
      <description>&lt;P&gt;Hallo,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;konnten Sie mittlerweile das Problem lösen? Wie importieren Sie das Daten aus PDS Handwerkersoftware? Haben sie die Formatierung vom gelöschten Nutzer ggf. ausprobiert? Über eine Rückmeldung wäre ich sehr dankbar.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;W. Lapschin&lt;/P&gt;</description>
      <pubDate>Wed, 14 Sep 2022 13:26:57 GMT</pubDate>
      <guid>https://www.datev-community.de/t5/Betriebliches-Rechnungswesen/Datenimport-aus-pds-Handwerkersoftware/m-p/309848#M43437</guid>
      <dc:creator>WLapschin</dc:creator>
      <dc:date>2022-09-14T13:26:57Z</dc:date>
    </item>
  </channel>
</rss>

