I need to create a single record report that will print the details of a client. My problem is, I can't find how to display the joined table of my query.
for example this sql...
SELECT * FROM Clients
JOIN dependents ON dependents.client_id = Clients.client_id
WHERE client_id = '#client_id#'
I am using SQL builder to generate report. The problem is, my tables have a 1 to many relationship.
For example:
Client Table
ID-NAME
1-CLIENT A
2-CLIENT B
--------------------
Dependent Table
ID-CLIENT ID-NAME
1-1-CLIENT A DEPENDENT 1
2-1-CLIENT A DEPENDENT 2
3-1-CLIENT A DEPENDENT 3
4-2-CLIENT B DEPENDENT 1
5-2-CLIENT B DEPENDENT 2
------------------
how can i display that in a single record report when i choose to print client a record with its dependents?
Hi, I am new to this forum and have started using nuBuilder forte for a few weeks now which awesome.
I have a form and I have created a report using SQL. I would like to generate a report(certificate) based in the current opened record. I have tried #RECORD_ID# filter but it seems not working; it outputs all record.