How to include the number of rows (data points)?

Hi,

I am using Helical Insight 3.1 and mainly using tabular reports. In the pdf exports I would also like to include the number of rows (data points). How can that be done?

Thank You

1 Like

Hello Marc,

Open the report (not the dashboard) and then navigate to PDF Options. In that go to “Add Frame” and in that there is “Script” option. In that script option you can write a Javascript code like below which will fetch the current date and print it.

var rowCount = $('#chart_1_table').rowCount();
document.getElementById("btnGetCount").innerHTML = rowCount;

Thank You
From Team Helical.