--- title: "Copy & Paste Values" slug: "copy-paste-values" updated: 2025-04-23T10:35:34Z published: 2025-04-23T10:35:34Z canonical: "knowledge-base.rossum.ai/copy-paste-values" --- > ## Documentation Index > Fetch the complete documentation index at: https://knowledge-base.rossum.ai/llms.txt > Use this file to discover all available pages before exploring further. # Copy & Paste Values > [!CAUTION] > 🔥 DEPRECATED 🔥 > > This feature is deprecated. It won't receive any further updates and is likely to be completely removed in the future. Please consider using other available alternatives or contacting [support@rossum.ai](mailto:support@rossum.ai) for further assistance. *Formerly known as Value Operations* ## Installation Copy & Paste Values extension is available in the Rossum store. To install the extension, follow these steps: 1. Login to your Rossum account. 2. Navigate to **Extensions → Rossum Store**. 3. Search for **Copy & Paste Values** extension and "Add" it. A default "Rossum Store extension settings" page will open where you can configure the extension to your liking (visit [configuration examples](/help/docs/configuration-examples-6) for inspiration). ## Basic usage > [!WARNING] > 🚧 WORK IN PROGRESS 🚧 > > We're still working on this part and would love to hear your thoughts! Feel free to [share your feedback](https://github.com/rossumai/university/discussions) or [submit a pull request](https://github.com/rossumai/university/pulls). Thank you! 🙏 ## Available configuration options ```json {  "operations": [    {      // Under what condition should the source field be copied?      "condition": "len({line_items}) > 0 and {item_po} == ''",      // Source field from where the source value should be copied.      "source_field": "order_id",      // Target field to where the source value should be copied.      "target_field": "item_po_copy"    }    // … more operations  ] } ```