Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: neo86
  • Order by date
  1. neo86

    Complicated joining of 3 DB fields

    Thanks a lot CoSpringsguy .... and I would like to know one more thing ... Why is it I dont see an option to edit my post .... If i want to make any changed to the post tht I already posted I dont see an edit option .... I have to type in the whole thing again with the changes .... or am I not...
  2. neo86

    Complicated joining of 3 DB fields

    we did that because without that we might not know which one is null DBfield1 DBFieldTest1 DBFieldTest2 bike, bike, car NULL;2;3 abc;def;NULL without the NULL text it would look like this DBfield1 DBFieldTest1 DBFieldTest2 bike, bike, car 2;3 abc;def which is reallly gonna mess things up...
  3. neo86

    Complicated joining of 3 DB fields

    :) OK. we have made those null values to be displayed as NULL (- TEXT) in DB .. to make it easy ... when u get time help me out .. Thanks
  4. neo86

    Complicated joining of 3 DB fields

    sorry I copy pasted the last part in the above post ... so please ignore the last line which says null = blank value .... NULL is a text in DB and not blank and I want to omit it as shown above .... Does your formula handle that case?
  5. neo86

    Complicated joining of 3 DB fields

    sorry if it is null it ll b as NULL(text) not blank .. it ll have the value as NULL and I should not show that value ..... its more like DBfield1 DBFieldTest1 DBFieldTest2 bike, bike, car NULL;2;3 abc;def;NULL the above can be considered as the 8th case ...... this should display in the...
  6. neo86

    Complicated joining of 3 DB fields

    I have a different question though ... does your formula handle the case which I mention below DBfield1 DBFieldTest1 DBFieldTest2 bike, bike, car null(blank);2;3 abc;def;null(blank) the above can be considered as the 8th case ...... this should display in the report...
  7. neo86

    Complicated joining of 3 DB fields

    yes CoSpringsGuy I solved that issue ... Thanks for responding
  8. neo86

    Complicated joining of 3 DB fields

    CoSpringsGuy, I need your help again. WhilePrintingRecords; local stringvar array a1; a1 := split({Command.FF},"/"); local numbervar i; local stringvar R1; for i := 1 to ubound(a1) do ( ( R1 := R1 + " " + mid(a1[i],1) + "," ); R1 := left(R1,len(R1)-1); ); R1 I am...
  9. neo86

    Complicated joining of 3 DB fields

    CoSpringsGuy, I dont see why yu say its an unusual method .. your formula is awesome ... Thanks a lot again for the explanation ..
  10. neo86

    Complicated joining of 3 DB fields

    CoSpringsGuy, Thanks a lot for the help but I am sorry if its too much to ask , I figured out the rest but can you tell me what this part of ur code is doing. I want to learn and am very much interested how this works ..... local numbervar array max := [p1,p2,p2]; if p1+p2+p3 = 0 then...
  11. neo86

    Complicated joining of 3 DB fields

    CoSpringsGuy, You are awesome ... it works like a dream ... Thanks a lot .... I would have treated you for this if I got a chance ;) .... Thanks a Tonne
  12. neo86

    Complicated joining of 3 DB fields

    Madawc, Thanks for the response. Can you tell me how to handle that Null value case in the formula. Thats the problem I am having now.
  13. neo86

    Complicated joining of 3 DB fields

    Giving a clearer view of what I want as the post above did not come up clearly . DBfield1 DBFieldTest1 DBFieldTest2 flight null null cycle 2 null...
  14. neo86

    Complicated joining of 3 DB fields

    Hi all, I need some help with CR 2011 formula Need to do something like this DBfield1 DBFieldTest1 DBFieldTest2 flight null null cycle...

Part and Inventory Search

Back
Top