Skip to main content
Question

Attachment Link in Reports

  • November 21, 2025
  • 1 reply
  • 26 views

When I pull a report to include the attachment link, if there are more than one attachment, the link does not appear on the report. Is there a way around this? Could the report list all the links for each attachment connected with a Pipefy Card? Please help! 

1 reply

Eduardo Cerejo
Pipefy Staff

Hi ​@BlueWindSupplyChain. Thanks for reaching out.

You've identified a known limitation in how Pipefy exports attachment fields. When a card has multiple attachments, all links are combined into a single cell separated by commas and most spreadsheet apps (Excel, Google Sheets) only recognize a single URL per cell as a clickable hyperlink, so the links end up appearing as plain text.

Here's a workaround you can use directly in your spreadsheet:

  • The attachment links are separated by ", " (comma + space) in the exported cell. You can split them into separate columns using:
    • Google Sheets: =SPLIT(A2, ", ")
    • Excel: =TEXTSPLIT(A2, ", ")

 Just replace A2 with the cell containing the attachment links. Each link will appear in its own column and should be clickable.