# Result tag for amount tax calculation

**URL:** https://community.silverfin.com/t/result-tag-for-amount-tax-calculation/1600
**Category:** Templates
**Tags:** result-tags
**Created:** [November 11, 2019, 3:06pm UTC](https://community.silverfin.com/t/result-tag-for-amount-tax-calculation/1600 "2019-11-11T15:06:21Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![FINIFY](https://yyz2.discourse-cdn.com/flex030/user_avatar/community.silverfin.com/finify/32/1498_2.png) [@FINIFY](https://community.silverfin.com/u/FINIFY)
#### Post date: [November 11, 2019, 3:06pm UTC](https://community.silverfin.com/t/result-tag-for-amount-tax-calculation/1600/1 "2019-11-11T15:06:21Z")

</div>

Hi,

Related to below case:

> [@CASE: reference payable taxes from template taxes calculation (BE template)](https://community.silverfin.com/t/case-reference-payable-taxes-from-template-taxes-calculation-be-template/1490):
>
> Let’s say we want to create a template in which we detail the done work we did in the working papers, and one of the segments is to show if taxes (done in our Silverfin standard reconciliation template Tax Calculation) are payable or not, eg: The code to built this, is found here: {% comment %}the result of payable tax or not is stored in the result tag "vennootschapsbelasting" in the template with handle "belastingberekening"{% endcomment %} {% assign tax\_calc = period.reconciliations.…

By chance, I know that this template has been replaced by another reconciliation, so I’d like to know what the new result-tag is?

I want to create a letter where this amount is shown (and depending on the outcome, show a different text).

Thanks.

---

<div class="post-metadata">

### Author: ![sven](https://yyz2.discourse-cdn.com/flex030/user_avatar/community.silverfin.com/sven/32/1495_2.png) [@sven](https://community.silverfin.com/u/sven)
#### Post date: [November 12, 2019, 5:53pm UTC](https://community.silverfin.com/t/result-tag-for-amount-tax-calculation/1600/2 "2019-11-12T17:53:41Z")

</div>

Hi @FINIFY,

If you wish to access the result tags of the template `Tax module` of our module Corporate tax, you can use this code:

```auto
{{ period.reconciliations.2018_tax_module.results }}

```

It’ll give you an overview of all result tags used there (think the one you need is called `total_tax_due` so:

```auto
{{ period.reconciliations.2018_tax_module.results.total_tax_due }}

```

should give you the one you need.

---

<div class="post-metadata">

### Author: ![FINIFY](https://yyz2.discourse-cdn.com/flex030/user_avatar/community.silverfin.com/finify/32/1498_2.png) [@FINIFY](https://community.silverfin.com/u/FINIFY)
#### Post date: [November 13, 2019, 8:26am UTC](https://community.silverfin.com/t/result-tag-for-amount-tax-calculation/1600/3 "2019-11-13T08:26:00Z")

</div>

Thanks @sven,

I can complete my letter of Tax now 😌

---

<div class="post-metadata">

### Author: ![sven](https://yyz2.discourse-cdn.com/flex030/user_avatar/community.silverfin.com/sven/32/1495_2.png) [@sven](https://community.silverfin.com/u/sven)
#### Post date: [November 13, 2019, 1:54pm UTC](https://community.silverfin.com/t/result-tag-for-amount-tax-calculation/1600/4 "2019-11-13T13:54:17Z")

</div>


