By flippers - Saturday, May 7, 2005
|
How can change the order of the surnames with the report generator? I use Generic Report (ES), and the result is :
2nd surname - name and 1st surname.
I want 1st surname - 2nd surname and name
:oops:
|
By V.L.o - Thursday, August 18, 2005
|
Are you using v1.91b?
If I remember it correctly the thing is Report Generator uses Full Name as an source for report. You should corrrect this. If you hav bigger database try over Table Layout, just change columns...
|
By GenoProSupport - Thursday, August 18, 2005
|
You can use the SortBy() method. For instance, you could have the following code:Dim collectionIndividuals
Set collectionIndividuals = Individuals.SortBy("Name.Last2, Name.Last1, Name.First, Name.Middle")
For Each i In collectionIndividuals
...
Next |
|
|