Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Some suggestions
Message
From
02/09/2008 12:30:15
 
General information
Forum:
Visual FoxPro
Category:
Stonefield
Environment versions
Visual FoxPro:
VFP 9 SP2
OS:
Windows XP
Network:
Windows 2003 Server
Database:
MS SQL Server
Miscellaneous
Thread ID:
01343877
Message ID:
01344195
Views:
19
This message has been marked as a message which has helped to the initial question of the thread.
Hi Naomi.

>I have another question. We have a report where we set filter by person's last name and first name. We want to be able to have the title of the report to be something like
>
>"Individual Donor's Report - First Name Last Name."

You can enter an expression into the header of a report by prefixing it with "=". There's a built-in function called GetConditionValue that returns the filter value for the specified field. So, combining these two ideas, you can use something like this for the report header:

= "Individual Donor's Report - " + GetConditionValue('Donors.FirstName') + ' ' + GetConditionValue('Donors.LastName')

Doug
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform