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 gkittelson 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. sboyle1

    Supress Subreport in Drill down

    Thanks. I tried that, but the issue is that I do want SOME headers on the drill-down. I just want to suppress certain header sections on drilldown. Is there a way to do this?
  2. sboyle1

    Supress Subreport in Drill down

    I'm using CR 8.5. I have a report with two subreports, in report headers a and b, that contain summary information. When I drill down into hidden details on the main report, the summary subreports show up on the new drill down tab. I want to hide report headers a and b on drill down. Anyone have...
  3. sboyle1

    Evaluating zero and null values

    Thanks for the reply. I'd never used the "convert null field values to default" -- it makes this sort of issue go away, which is nice. The real question on this is WHY you have to check for null values first. Shouldn't the formula evaluate every part of the "or" statement? Or...
  4. sboyle1

    Evaluating zero and null values

    I have a report doing some strange things regarding evaluating a zero or null value. The report uses a left outer join to join an inventory table to a bill of materials (BOM) table. There are some records that have a matching BOM record, and some that don't. I have a boolean parameter...
  5. sboyle1

    Change Group based on Parameter

    I'm hitting the wall on this one. I have an Inventory report which is grouped by inventory item and site (Groups on the following formula: {InvItem}&{Site} ) The boss wants a parameter that will prompt for how the report will be grouped. They want to group by items at an individual site (which...
  6. sboyle1

    IIF Function not evaluating correctly

    Nope. I was teaching a Crystal Advanced class, and one of my students came up with this problem, so I thought I'd see if there was an answer to why it's not working. There's a bunch of different ways to do the same thing (.e., if...then...else), but if the IIF statement doesn't evualate this...
  7. sboyle1

    IIF Function not evaluating correctly

    It looks like our confusion is due to the formatting on this site. Squarebrakcet-i-squarebracket is being interpreted as italic. My posts, and it looks like yours, drop the square brackets and anything in between them. Let's try this again: Local NumberVar intvar:=1; Local StringVar PhoneVar...
  8. sboyle1

    IIF Function not evaluating correctly

    My apologies, I missed an item in my formula when I posted it. This still doesn't work Local NumberVar i:=1; Local StringVar PhoneVar; While i<=length({Customer.Phone}) do ( IIF(IsNumeric({Customer.Phone}[i]), PhoneVar:=PhoneVar+{Customer.Phone}[i], PhoneVar); i:=i+1 ); Right(PhoneVar,6)
  9. sboyle1

    IIF Function not evaluating correctly

    Yes. I'm using the while statement to loop through the phone number field and parse out any non-numeric digits. The final end product is an account number based on the last 6 numeric (not &quot;-&quot;, &quot;(&quot;, or space) digits of the phone number. The big question is why the IIF...
  10. sboyle1

    IIF Function not evaluating correctly

    Does anyone have any idea why the following formula doesn't work? I'm trying to return the last 6 numeric characters from a phone number. I know there are other ways to do it, but am not sure why the IIF statement isn't evaluating correctly. It seems to return &quot;true&quot; regardless of...

Part and Inventory Search

Back
Top