# Company city name in export NL

**URL:** https://community.silverfin.com/t/company-city-name-in-export-nl/2098
**Category:** Exports
**Created:** [May 25, 2021, 7:30am UTC](https://community.silverfin.com/t/company-city-name-in-export-nl/2098 "2021-05-25T07:30:09Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![donderdijk](https://avatars.discourse-cdn.com/v4/letter/d/aca169/32.png) [@donderdijk](https://community.silverfin.com/u/donderdijk)
#### Post date: [May 25, 2021, 7:30am UTC](https://community.silverfin.com/t/company-city-name-in-export-nl/2098/1 "2021-05-25T07:30:10Z")

</div>

I want to print the place name of the company on the cover page of the export.

I can use {{company.city | slice: 7, 30}} however this does not always work well.

Is it possible to place the field from the template Algemene instellingen - jaarrekening on the cover sheet?

 ![Knipsel](https://canada1.discourse-cdn.com/flex030/uploads/getsilverfin/original/2X/0/06da1dc177ffdc676094d74de5c0265a3efbe236.jpeg)

---

<div class="post-metadata">

### Author: ![Maxim\_Wittesaele](https://yyz2.discourse-cdn.com/flex030/user_avatar/community.silverfin.com/maxim_wittesaele/32/1703_2.png) [@Maxim\_Wittesaele](https://community.silverfin.com/u/Maxim_Wittesaele)
#### Post date: [May 25, 2021, 1:58pm UTC](https://community.silverfin.com/t/company-city-name-in-export-nl/2098/2 "2021-05-25T13:58:00Z")

</div>

Hi Donderijk,

This is definitely possible;

If you go to styles → actions → edit style → style settings → scroll to “cover text”

You can simply add -

{{ period.reconciliations.vkt\_1.results.city\_var }}

The “city\_var” result comes from the - Identification details which already creates the format you are looking for.

At Silverfin we use the following logic instead of the {{company.city | slice: 7, 30}} solution you have used;

{% assign city\_parts = company.city | split:" " %}  
{% assign postal\_code = city\_parts[0] %}  
{% assign city\_parts = company.city | remove:postal\_code %}  
{% assign city\_parts = city\_parts | split:" " %}  
{% assign city = city\_parts | join:" " %}

{% assign company\_city = city %}  
{% capture city %}{% input custom.vkt\_1.city default:company\_city placeholder “Gemeente”%}{% endcapture %}  
{% assign city\_var = custom.vkt\_1.city | default:company\_city %}  
{% result ‘city\_var’ city\_var %}

You can always edit the cover page in export styles to your liking.

Don’t hesitate to contact us again if this doesn’t work to your wishes.
