NeoInJS Posted October 2, 2017 Report Share Posted October 2, 2017 Need assistance please - I want to Hide a row from a tabular report based on the result of a calculated field. For example tracking of attendance. If my Calculated field (Status) = "No", the name of the student will be hidden in the table. Thank you. Quote Link to comment Share on other sites More sharing options...
0 nightowl Posted October 2, 2017 Report Share Posted October 2, 2017 Hi NeoInJS, You can try something like this: <div id="row-marker-[@field:Teacher_ID]"></div> <script> var marker = document.getElementById('row-marker-[@field:Teacher_ID]'); var column = marker.parentNode; if ('[@calcfield:1]' === 'Alice') { var row = column.parentNode; row.style.display = 'none'; } </script> Hope this helps. Quote Link to comment Share on other sites More sharing options...
0 Carlson Posted December 21, 2018 Report Share Posted December 21, 2018 NeoInJS, Were you able to get this script to work? Quote Link to comment Share on other sites More sharing options...
0 Meekeee Posted March 26, 2019 Report Share Posted March 26, 2019 You can check this forum post: It was working on my end. Quote Link to comment Share on other sites More sharing options...
0 Meekeee Posted March 18, 2022 Report Share Posted March 18, 2022 Hi - Just to add, if you want to hide a column in a Pivot Report - you can use this code: Quote Link to comment Share on other sites More sharing options...
Question
NeoInJS
Need assistance please - I want to Hide a row from a tabular report based on the result of a calculated field. For example tracking of attendance.
If my Calculated field (Status) = "No", the name of the student will be hidden in the table.
Thank you.
Link to comment
Share on other sites
4 answers to this question
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.