|
-
Aug 21st, 2000, 02:02 AM
#1
Thread Starter
Member
I was wondering if anyone knew how to concatenate fields in a data report.
Do you do it in the data enviroment or on the report itself????
-
Aug 21st, 2000, 08:01 AM
#2
Addicted Member
The easiest way to do this would be to do it in your sql in the data environment.
ie. in your command do something like this...
SELECT ('Mr./Mrs. ' || FIRST_NAME || ' ' || LAST_NAME) AS FULLNAME
FROM TBL
WHERE ....
then refrence it in your report as FULLNAME
let me know if this isn't clear or if you need more help.
-
Aug 21st, 2000, 05:06 PM
#3
Thread Starter
Member
I'll give this a try but why I'm here I have another problem with data reports, I want to know how to specify parameters.
I have to select all kinds of info from sifferent tables which I did with an SQL in the data enviroment but I have to get the dates which the report is approprate for from the user. How do I do this?????
-
Aug 22nd, 2000, 07:40 AM
#4
Addicted Member
the only way to do this would be to use parameters in your command object in your sql and open that command object with the parameters before displaying your data report. let me know if you need more help....
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|