---
title: "Table Reports"
canonical: "https://support.appfire.com/space/PSJ/15482199/Table%20Reports"
format: markdown
---
> Macro (aura-html)


The table report is a simple way to display your data in a table format using the<span style="color: #333333"> </span> [Simple Issue Language™ (SIL)](https://appfire.atlassian.net/wiki/spaces/PSJ/pages/15489652) <span style="color: #333333">. SIL provides </span><span style="color: #333333">[predefined structures](https://appfire.atlassian.net/wiki/plugins/servlet/confluence/placeholder/unknown-attachment?locale=en_GB&version=2)</span><span style="color: #333333"> and functions that comes in help for generating such a report. </span>  
<span style="color: #333333"> </span>

<span style="color: #333333"> </span>  
<span style="color: #333333"> </span>

# Configuring SIL Reporting Gadget

First you need to add the SIL Reporting Gadget to your dashboard. To do that, click **Add new gadget. **In the **Add new gadget** dialog, click **Load all gadgets**. Search for the **SIL Reporting Gadget** and add it to your dashboard.

To see more instructions about adding a gadget to your dashboard see [Atlassian documentation](https://confluence.atlassian.com/display/GADGETS/Adding+a+Gadget+to+your+Dashboard).

  


The **configuration screen** is only available to Jira Administrators and System Administrators.

To configure the gadget you have to select the sil script file and add the default values for the parameters used in the selected script. 

<span style="color: #333333"> </span>

![image](media://a51f6f0d-fb7b-4570-9266-9915f907c5e9)

The parameters will be passed into the program using the **argv** variable. The values will be available using a construct like **argv["parameter_name"]** or **argv[position].** For the above example, the project can be retrieved using **argv["projects"]** or **argv[0]**. 

First the gadget will run with the default values for the parameters, if the values for those parameters were specified in the gadget configuration. 

Once you save the gadget configuration, the report will be displayed. 

<span style="color: #333333"> </span>  
<span style="color: #333333"> </span>

> ⚠️ The script that you are using to generate the report needs to return the table structure that you are building otherwise the report will throw an error.

If you want to return information about another projects without having to configure the gadget, all you have to do is add a field for the projects using one of the functions for creating fields from [gadget functions](https://appfire.atlassian.net/wiki/spaces/PSJ/pages/15481783). After that you will be able to set parameter in the parameter section and run the report with the new value.

# > Macro (anchor)

Examples

## Opened vs Resolved Issues Report

> Macro (include)

## Opened vs Resolved Issues Report Transposed

> Macro (include)

## Opened vs Resolved Issues Report Average and Sum

> Macro (include)