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 IamaSherpa 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: Sose
  • Order by date
  1. Sose

    IsNull

    I am trying to get a report to display only records where the elapsed time field is null.. Any suggestions?
  2. Sose

    Count in Date Range

    I need to do a count of a "Schools" where the date range of "ID's Generated" is in the period lastfullweek. I do not know how to get the syntax in the right order. Any help would be greatly appreciated.
  3. Sose

    Tough Count situation

    This is what I have, exactly: @rec_tot} // add to record, suppress field numberVar tot := 0 if tot < 360 then (if {Table.Charge} in [0,1] then tot := tot + 1) else if {Table.Charge} = 1 then tot := tot + 1; tot And I still get the &quot;The reamining text...&quot; error, right where...
  4. Sose

    Tough Count situation

    If I take out: @rec_tot} This is what I have: WhilePrintingRecords; numbervar tot:=0; if tot < 360 then (if {TASKS.CHARGE} in [0,1] then tot := tot + 1) else if {TASKS.CHARGE} = 1 then tot := tot + 1; tot And the output is 1.00
  5. Sose

    Tough Count situation

    I went ahead and joined up here.. And, I realized I may have confused an array with a boolean formula.. Regardless, I think the issue is the same..
  6. Sose

    Tough Count situation

    How do I get the array to know which field to pull information from? I keep getting &quot;This field name is not known&quot; Thanks so much for your help.
  7. Sose

    Tough Count situation

    I have a field named &quot;Charge&quot; that will either have a value of 0 or 1, for a number of records. I need to count every instance (over a period of a month) of 0 and 1, until they equal 360, and then only count every instance of 1 after that for the rest of the month. Is this possible?

Part and Inventory Search

Back
Top