Unterstützung beim ersten UiPath-Prozess: Daten aus PDF-Rechnungen extrahieren

Hi @florian.huennies
Welcome to UiPath

Method 1: Document Understanding

  1. Read PDF using “Digitize Document”.
  2. Extract data with ML Model or Form Extractor.
  3. (Optional) Validate using “Present Validation Station”.
  4. Save extracted data.
  5. Write to Excel with “Write Range”.
  6. Loop through multiple PDFs with “For Each File”.

Method 2: Regex/OCR (Fixed format PDFs)

  1. Read PDF with “Read PDF Text” or OCR.
  2. Extract data using Regex or Anchor Base with OCR.
  3. Store extracted values in variables.
  4. Write data to Excel using “Write Cell” or “Write Range”.
  5. Loop through PDFs with “For Each File”.