Click here to Skip to main content
15,896,606 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i know how to create a crystal report using parameter.but i dont no idea to link two parameters field to one id.

table 1                       table 2
acno                          acno
name                          repayment amount                        
date                          repayment date                          
loan amount                   bal
loan int


What I have tried:

please give me a idea friends...................................................................................................................................................
Posted
Updated 3-Mar-18 4:42am
v2

1 solution

Try:
SQL
SELECT * FROM Table1 t1 
JOIN Table2 t2 ON t1.acno = t2.acno
Other than that, we have no idea what you are trying to achieve, so you will need to look up SQL Joins[^] and modify the query yourself.
 
Share this answer
 
Comments
Pasupathy Msc 4-Mar-18 2:30am    
thank u chief
and i have another doubt.

i have receipt form. i need to send the value for report form.like retrieve parameter value from another form how can i do this
OriginalGriff 4-Mar-18 4:10am    
Open a new question, and explain in more detail - we can't tell much from trivial explanations and we really do need to know exactly what you are doing and where you are stuck. There are a *HUGE* number of different things you could be doing which all fit under the broad banner of "i need to send the value for report form.like retrieve parameter value from another form" and we can't tell which. So show us relevant code fragments, explain in detail - the better the question, the better the answer!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900