Jump to content

If there is child show URL in parent report


Recommended Posts

add a calculated field to your parent report page to count number of child records:

Calculated Field 1:

SELECT COUNT(Parent_ID) FROM Child WHERE Parent_ID = [@field:ID]

"Parent_ID" is foreign key in child table. "Child" is the name of the child table.

add a HTML Block to your parent report and use the code below to show the conditional link:

 

<div id="link[@field:ID]"></div>
<script>
if ([@calcfield:1] >1){
document.getElementById('link'+[@field:ID]).innerHTML = "URL";
}
</script>

[@field:ID] needs to be selected from picker.

Link to comment
Share on other sites

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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...