Michelle Posted April 11, 2016 Report Share Posted April 11, 2016 Hi all, If someone knows how to hide some records on the Tabular report if Calculation => 5 for example? Quote Link to comment Share on other sites More sharing options...
Aurora Posted April 11, 2016 Report Share Posted April 11, 2016 Hi Michelle, You could use this script : <div id="visi[@field:Your_Unique_ID]"> </div> <script> var isi = document.getElementById("visi[@field:Your_Unique_ID]"); var calc="[@calcfield:1]"; if(calc >= 5){ isi.parentNode.parentNode.style.display = 'none'; } </script> Add an HTML block to the Report Page and paste the code above. Regards, Aurora JEllington 1 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.