Forum Replies Created

Viewing 15 posts - 1 through 15 (of 40 total)

  • RE: Help with Accumulation

    Thank you all for your support. I implemented Jacob's solution and it is doing exactly what I need it to do.

    Jacob, I think your grouping approach is...

  • RE: Design Challenge

    Thanks so much for the help!!! That worked perfectly. πŸ™‚

  • RE: Is it possible to print the β€œData Source Name” on the footer?

    I already have the data source on a text box. I would like to auto populate it from the Data Source Name. πŸ™

  • RE: INNER JOIN with a String Challenge

    So how can I determine that based on the info you gave me? There is nothing in the #MySample table letting me know that row belongs to ZZ group

    That is...

  • RE: INNER JOIN with a String Challenge

    INSERT INTO #MySample VALUES (4, '

    123456789 --match value 4

    8943','Calan','Katin')

    This record does not match because in the #MyAddress table it is NO 'A ...

  • RE: INNER JOIN with a String Challenge

    I did, but per example, it should only return 3 records, and I get 4.

  • RE: INNER JOIN with a String Challenge

    I have to ask, Craig... REVERSE is fairly expensive performance-wise. Why any REVERSE's to begin with?

    Jeff, better suggestions? Thank you!

  • RE: INNER JOIN with a String Challenge

    Maybe its me but the data supplied does not match ID is mainly a number and address code has the ab space issue...Are you wanting to join the first 9...

  • RE: INNER JOIN with a String Challenge

    Yes, I would not be able to modify the data on the source #MyAddress table. πŸ™

    However, I would like to implement a permanenet solution so I can always use it...

  • RE: Filter challenge

    Hi Dixie,

    Yes, this is working, and thank you for the explanation.

    It makes sence. I really appreciate your help on this one!

    John

  • RE: Filter challenge

    Yes, I am thinking to work on one step at a time.

    Right now, I am in urgent need to get 2 or more same instances of the Type...

  • RE: Filter challenge

    Okay... so we want to see any group with two or more types that have two or more rows per type.

    Now tell us again how codes fit into that. I...

  • RE: Filter challenge

    ColdCoffe... almost there, but does not work for example GroupID 5.

    CREATE TABLE #MyCodes

    (

    MyNo int,

    GroupID varchar(100),

    Code varchar(6),

    MyType varchar (15)

    )

    INSERT INTO #MyCodes VALUES (1, 3, 10, 'Red')

    INSERT INTO #MyCodes VALUES...

  • RE: Filter challenge

    Good Point, yes I want to see GroupID 99 as well, because it has 2 or more sets of two ro more.

  • RE: Filter challenge

    Thank you all for your help!

    Yes, it is very confusing. But I got some clarifications.

    Condition for the type should be two or more of the same type per groupID.

    So,...

Viewing 15 posts - 1 through 15 (of 40 total)