Sidebar

IDEA-Hilfe.de
  • Suche
  • Newsfeeds
    • Newsletter
  • Home
  • Steuer-News
    • allgemeine Steuer-News
    • GOBD
    • IDEA
    • Kasse
    • SRP - Summarische Risikoprüfung
    • BFH-Entscheidungen
    • FG-Entscheidungen
    • E-Rechnungen
    • Umsatzsteuer
  • Webverzeichnis
    • Steuerrecht
      • BFH-Urteile
      • FG-Urteile
      • Steuerbehörden
      • Finanzämter
      • Formulare / Vordrucke
      • Steuersoftware
      • IDEA
      • Steuerkanzleien
      • Zeitschriften
      • Allgemeine Steuerlinks
      • E-Rechnungen-Links
      • Kassenlinks
      • Webinare
      • Umsatzsteuer
      • Gesetze
      • Verwaltungsschreiben
      • Open Data Links
    • Handelsrecht
    • Strafrecht
    • Steuerrecht Ausland
      • Österreich
      • Schweiz
      • USA
    • Google-Suchhilfe
    • Tools for Data Science
  • Datenanalyse
    • IDEA
    • Microsoft Power BI
    • Netzwerkanalyse
    • Python
    • Open_Data
    • Machine_Learning
  • KI-Tools
    • KI-Tools Text zu Text
    • KI-Tools Text zu Bild
    • KI-Tools Text zu Sprache
    • KI-Tools Text zu Audio
    • KI-Tools Text zu Video
    • KI-Erkenner
    • KI-Tools-Sammlung
    • KI-Suchmaschinen
    • KI-PROMT-Sammlung
    • KI-PROMPT-Management
    • KI-Offline-Tools
    • KI-Spass
  • Chatbot

Home

GoBD-Chatbot inkl. aktueller Änderungen

Details
Super User
GOBD
26. März 2024
Zugriffe: 602

GoBD-Chatbot inkl. aktueller Änderungen unter https://app.agent23.ai/chatbot-iframe/d1abcacbce4447f7ab5dba5563fc6502 oder hier direkt

GOBD BMF Chatbot
Twittern
Share
Share
share with Whatsapp
Send by email
powered by social2s

BMF-Schreiben vom 11.03.2024 zur Änderung der GoBD veröffentlicht

Details
Super User
IDEA - Datenanalyse
26. März 2024
Zugriffe: 228

BMF-Schreiben vom 11.03.2024 zur Änderung der GoBD veröffentlicht unter https://www.bundesfinanzministerium.de/Content/DE/Downloads/BMF_Schreiben/Weitere_Steuerthemen/Abgabenordnung/AO-Anwendungserlass/2024-03-11-aenderung-gobd.html 

alle wesentlichen Änderungen unter https://elektronische-steuerpruefung.de/bmf/gobd-2024-03.htm 

GOBD BMF
Twittern
Share
Share
share with Whatsapp
Send by email
powered by social2s

Nutzung einer IDEA-Datei in Python mittels IDEALib.py - hier ein Beipielsskript

Details
Super User
Python
10. März 2024
Zugriffe: 434
# Nutzung einer IDEA-Datei in Python mittels IDEALib.py - hier ein Beipielsskript

#!/usr/bin/env python # coding: utf-8 # # IDEA to Python # # The easiest way to transfter an IDEA imd file to python for analysis is to use the IDEALib.py module the comes installed with IDEA. This module contains the code to easily transfer the file from IDEA to Python and back again. # # If the script is being run directly from IDEA you will have access to it but if you are doing your development outside of IDEA you will have to copy the file into your python working folder in able to access it. The file can be found here: # # C:\Program Files\CaseWare IDEA\IDEA\Lib\site-packages # # Once copied over you should be able to access it using import. # # In order to transfer a file from IDEA to python you will need to import IDEALib and pandas as the IDEALib transfer the IDEA file to a pandas dataframe. import IDEALib as ideaLib import pandas as pd # You will then need to call the IDEA client. What this is doing is access IDEA from python in order to read the idea file. idea = ideaLib.idea_client() # In order to read the file IDEA must be open to the project folder in which the file is stored. The syntax is to call the idea2py function from the ideaLib module, it needs two parameters, the name of the file to copy over and the client, which we created in the previous line. Depending on the size of the file it will take a few seconds or more to transfer to the Python dataframe. Below we are transfering it to the variable df. df = ideaLib.idea2py("Sample-Detailed Sales.IDM", idea) # Next we will extract all transactions for the first quarter from the dataframe. df_1st_Quarter = None start_date = '01-01-2020' end_date = '03-31-2020' criteria = (df['INV_DATE'] >= start_date) & (df['INV_DATE'] <= end_date) df_1st_Quarter = df[criteria] df_1st_Quarter # Next we will send this information back to IDEA. Again the IDEAlib has a function to do this called py2idea which needs the dataframe to transfer and the name of the file to be created in IDEA. ideaLib.py2idea(df_1st_Quarter, 'First Quarter Invoices')
IDEA Python
Twittern
Share
Share
share with Whatsapp
Send by email
powered by social2s

Idea Gleichungseditor vs. benutzerdefinierte Funktion in Ideascript oder Python - Video

Details
Super User
IDEA - Datenanalyse
10. März 2024
Zugriffe: 403

Idea Gleichungseditor vs. benutzerdefinierte Funktion in Ideascript oder Python - Video unter https://www.youtube.com/watch?v=bqtDu-gRRek 

 

Dieses Video zeigt zwei Methoden, wie man ein unformatiertes Datumsfeld in ein nutzbares Format umwandeln kann. Die erste Methode verwendet den Gleichungseditor, um das Datum mit einer komplexen Gleichung zu reformatieren. Die zweite Methode nutzt eine benutzerdefinierte Funktion, die entweder in der Idea-Skriptsprache oder Python geschrieben werden kann. Der Vorteil der benutzerdefinierten Funktion liegt in ihrer Lesbarkeit und Flexibilität, da sie auch für komplexere Aufgaben eingesetzt werden kann. Der Sprecher erklärt beide Methoden detailliert und zeigt, wie sie in der Datenbank implementiert werden.

IDEA IDEAScript benutzerdefinierte Funktion Gleichungseditor
Twittern
Share
Share
share with Whatsapp
Send by email
powered by social2s
Seite 11 von 94
  • Start
  • Zurück
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • Weiter
  • Ende
Bootstrap is a front-end framework of Twitter, Inc. Code licensed under MIT License. Font Awesome font licensed under SIL OFL 1.1.
Powered by T3 Framework