Title: Duplicate cell value
Last modified: January 22, 2020

---

# Duplicate cell value

 *  Resolved [mlekorlz](https://wordpress.org/support/users/mlekorlz/)
 * (@mlekorlz)
 * [6 years, 4 months ago](https://wordpress.org/support/topic/duplicate-cell-value/)
 * I’m exporting XLS with:
    – Export products as rows – Fill order columns for 1st
   row only
 * How can I copy values from only one column which is not filling down (Country
   name (billing))
 * > [View post on imgur.com](https://imgur.com/a/9fj7zsc)
 * 
    Values in borders needs to be duplicated

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Plugin Author [algol.plus](https://wordpress.org/support/users/algolplus/)
 * (@algolplus)
 * [6 years, 4 months ago](https://wordpress.org/support/topic/duplicate-cell-value/#post-12352722)
 * Hello
 * you should add it as custom product field.
    Follow to [https://algolplus.freshdesk.com/support/solutions/articles/25000018287-add-calculated-field-for-product-](https://algolplus.freshdesk.com/support/solutions/articles/25000018287-add-calculated-field-for-product-)
   use meta key “country_billing” and this PHP code. thanks, Alex
 *     ```
       add_filter('woe_get_order_product_value_country_billing', function ($value, $order, $item, $product,$item_meta) {
         $country_name = WC()->countries->countries;
         $country_code = $order->get_billing_country();
         return isset($country_name[$country_code]) ? $country_name[$country_code] : $country_code;
       }, 10, 5);
       ```
   
 *  Thread Starter [mlekorlz](https://wordpress.org/support/users/mlekorlz/)
 * (@mlekorlz)
 * [6 years, 4 months ago](https://wordpress.org/support/topic/duplicate-cell-value/#post-12352848)
 * Works like a charm. Thank You!
 *  Plugin Author [algol.plus](https://wordpress.org/support/users/algolplus/)
 * (@algolplus)
 * [6 years, 4 months ago](https://wordpress.org/support/topic/duplicate-cell-value/#post-12352862)
 * you’re welcome

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Duplicate cell value’ is closed to new replies.

 * ![](https://ps.w.org/woo-order-export-lite/assets/icon-256x256.png?rev=1365554)
 * [Advanced Order Export For WooCommerce](https://wordpress.org/plugins/woo-order-export-lite/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woo-order-export-lite/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woo-order-export-lite/)
 * [Active Topics](https://wordpress.org/support/plugin/woo-order-export-lite/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woo-order-export-lite/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woo-order-export-lite/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [algol.plus](https://wordpress.org/support/users/algolplus/)
 * Last activity: [6 years, 4 months ago](https://wordpress.org/support/topic/duplicate-cell-value/#post-12352862)
 * Status: resolved