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 SkipVought 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: *

  1. GJParker

    Substract String

    This assumes that the string always refers to pallets strreverse(ToText(val(strreverse(split({YourField},'Pallet')[1])),0,'')) & ' Pallets' Gary Parker MIS Data Analyst Manchester, England
  2. GJParker

    Books on Arrays ???

    Here's a couple of links http://www.mindspring.com/~jbesch/cr_arrays.pdf http://www.kenhamady.com/tools.html The Expert's Guide to Crystal Reports Formulas Gary Parker MIS Data Analyst Manchester, England
  3. GJParker

    Pie Chart - including 'Others' that need to be filtered or hidden

    Your problem is that you can't create a group on a summary formula. If you just wanted to display the date then there are ways around this, but these will not allow you to chart the results. One option is to calculate the Amtpaid totals per person on the db and bring these into the report, this...
  4. GJParker

    reduce a figure by a percentage

    How about {YourField} * 0.97 Gary Parker MIS Data Analyst Manchester, England
  5. GJParker

    max / min returns incorrect value

    Minimum ({DT1.Date}) is returning the earliest date returned in your recordset. CR does not ignore any dates so the 2 selection formuals must be returning different results. Gary Parker MIS Data Analyst Manchester, England
  6. GJParker

    max / min returns incorrect value

    What's in your @selectdate formula ? Gary Parker MIS Data Analyst Manchester, England
  7. GJParker

    Exporting to Excel - too many rows

    If you aren't displaying anything from the subreport then try this. Suppress all sections in the subreport from main report, right click subreport -> format subreport -> subreport tab -> suppress blank subreport. Section Expert -> select section containing subreport -> suppress blank section...
  8. GJParker

    inserting an Access table attachment into crystal reports XI report

    The way I've done this in the past is to add an OLE Object on to the report, select a bitmap image and select create from file. Select any image you have access to and check Display as Icon. Add the object on to your report canvass, right click and select format graphic -> picture tab ->...
  9. GJParker

    Record selection issue

    I think it's your last test that is causing the issue, you can't have a select condition based purely on db fields. It's a bit like chicken and egg I would rewrite this as If Join({?prm_BCD},',') = 'HEMO' Then ( ({Query1.Acronym} = "ABC" and {Query1.Desc} like "Home*") or...
  10. GJParker

    How to insert space in Detail Section

    One way would be to create a second detail sction detail b and use a suppression formula to hide/show this section. i.e. Onfirstrecord or {collection_date} <> previous({collection_date}) HTH Gary Parker MIS Data Analyst Manchester, England
  11. GJParker

    Arrays not displaying Values - want to use in Chart

    You won't be able to use any array values ina chart, you would be better served creating 12 formulas once for each month. HTH Gary Parker MIS Data Analyst Manchester, England
  12. GJParker

    Vanity Plates XI

    One for all the thespians out there Once saw 2 mercedes parked on a driveway in London has with the plates. "2 B" and "NOT 2B" Gary Parker MIS Data Analyst Manchester, England
  13. GJParker

    Formula

    Not IsNull() HTH Gary Parker MIS Data Analyst Manchester, England
  14. GJParker

    Space Loop

    Try This Local NumberVar i; Local StringVar String := 'THIS IS MY STRING'; Local StringVar Temp; For i := 1 to Len(String) Do( Temp := Temp & String[i] & ' '); Temp Gary Parker MIS Data Analyst Manchester, England
  15. GJParker

    Position of character in Memo field

    LB beat me to it but here is something similar. You should also be aware that arrays will only hold up to 1000 values so if your memo field contains more than a thousand words and your number is in position 1001 then this method won't work WhilePrintingRecords; Local StringVar Text :=...
  16. GJParker

    Formula to suppress a section conditionally

    Try this Not(IsNull({Detail.HoldBack})) or Not(IsNull({Detail.LehmansHoldBack})) or Not(IsNull({Detail.Interest})) Gary Parker MIS Data Analyst Manchester, England
  17. GJParker

    Formula to suppress a section conditionally

    my formula does return a boolean result. please cut and past your formula exactly on to here Gary Parker MIS Data Analyst Manchester, England
  18. GJParker

    Formula to suppress a section conditionally

    Ok so if we look at just one of the fields are you saying Value = NULL (Display) Value = 0 (Display) Value >= 1 (Suppress) if so then just change the last part of my formula to Holdback >= 1 or LehmanHoldBack >= 1 or Interest >= 1 Gary Parker MIS Data Analyst Manchester, England
  19. GJParker

    Formula to suppress a section conditionally

    forgot to change a variable name WhilePrintingRecords; Local NumberVar HoldBack := If IsNull({Detail.HoldBack}) Then 0 Else {Detail.HoldBack}; Local NumberVar LehmanHoldBack := If IsNull({Detail.LehmanHoldBack}) Then 0 Else {Detail.LehmanHoldBack}; Local NumberVar Interest := If...
  20. GJParker

    Formula to suppress a section conditionally

    pressed the wrong button there : WhilePrintingRecords; Local NumberVar HoldBack := If IsNull({Detail.HoldBack}) Then 0 Else {Detail.HoldBack}; Local NumberVar LehmanHoldBack := If IsNull({Detail.LehmanHoldBack}) Then 0 Else {Detail.LehmanHoldBack}; Local NumberVar HoldBack := If...

Part and Inventory Search

Back
Top