I have a sql statment that returns data in the following fashion:
User_Name ID Addr1 State Plan_Type
--------------- -- ----- ----- ---------
JOE 01 L ST. NY A
JOE 01 L ST. NY B
JOE 01 L ST. NY C
JOE 01 L ST. NY D
MARK 07 M ST. PA C
MARK 07 M ST. PA B
What I'm trying to do is to create a form letter report that prints one letter per User_Name that includes all that user_name Plan Types. But instead I've created a form letter report that prints a letter for every plan_type per User_Name. So using the example above i'm getting 4 letters for Joe, when what i need is 1 letter that includes all joe's plan types. Please help, i'm stuck!?!?
User_Name ID Addr1 State Plan_Type
--------------- -- ----- ----- ---------
JOE 01 L ST. NY A
JOE 01 L ST. NY B
JOE 01 L ST. NY C
JOE 01 L ST. NY D
MARK 07 M ST. PA C
MARK 07 M ST. PA B
What I'm trying to do is to create a form letter report that prints one letter per User_Name that includes all that user_name Plan Types. But instead I've created a form letter report that prints a letter for every plan_type per User_Name. So using the example above i'm getting 4 letters for Joe, when what i need is 1 letter that includes all joe's plan types. Please help, i'm stuck!?!?