crogers111
Technical User
CR XI
SQL
Issue: Data entry of different first names for the same individual causes the chart to show a spearate entry for each entry
Sample Data
MemberID FirstName LastName Total
E224 Jan Long 800
E224 Jan P Long 500
E455 John Smith 1100
E698 A J Jones 700
E698 AJ Jones 600
I need to show the names on the chart, so my thought is to split & parse the first name so it consisent for each member.
My initial thought is to strip the middle initial from FirstName where it exists and for intials like: A J if len(FristName) = 3 then remove the space and put the intials together like: AJ I'm not sure how to accomplish this.
The report itself groups on MemberID and has a Group Selection based on the Total per MemberID....so I don't think I have to worry about 2 individuals with the same name
I need help with the formula to split and parse the first name. Or is there is a better way to go about this
so that only 1 name shows for each individual on a chart ? Currently I have the chart set where 'on change of'is a concatenation of FirstName & Lastnname.
Thanks
SQL
Issue: Data entry of different first names for the same individual causes the chart to show a spearate entry for each entry
Sample Data
MemberID FirstName LastName Total
E224 Jan Long 800
E224 Jan P Long 500
E455 John Smith 1100
E698 A J Jones 700
E698 AJ Jones 600
I need to show the names on the chart, so my thought is to split & parse the first name so it consisent for each member.
My initial thought is to strip the middle initial from FirstName where it exists and for intials like: A J if len(FristName) = 3 then remove the space and put the intials together like: AJ I'm not sure how to accomplish this.
The report itself groups on MemberID and has a Group Selection based on the Total per MemberID....so I don't think I have to worry about 2 individuals with the same name
I need help with the formula to split and parse the first name. Or is there is a better way to go about this
so that only 1 name shows for each individual on a chart ? Currently I have the chart set where 'on change of'is a concatenation of FirstName & Lastnname.
Thanks