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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by bslaast

  1. bslaast

    Repeat group on pages

    I have a shipping label that prints a label per part number shipped. A shipment may contain several lines of the same or different part numbers so I am grouping on part number and summing the quantity. The total quantity shipped may be more than a box can fit. What I need is to start a new...
  2. bslaast

    A running total cannot refer to a print time formula

    I figured it out. I changed the Group Footer variable to: Whileprintingrecords; Global numbervar TotLess1Yr; if {@maxdate} < 365 then TotLess1Yr:= TotLess1Yr + {@extendedcost}
  3. bslaast

    A running total cannot refer to a print time formula

    That just totals the days. I need to total the costs based on the number of days. So if the number of days <365 I want a running total of those costs, >= 365 and < 730 a running total of those costs, >=730 and <1095 a running total of those costs.
  4. bslaast

    A running total cannot refer to a print time formula

    I am receiving the arror "A running total acnnot refer to print time formula" I want to get how many, the and how many days parts have been in inventory. I also want know break down the quantities and costs by <1 year in inventory, 2 years in inventory and 3+ years in inventory. I have am...
  5. bslaast

    Running Total - 1st Result Blank?

    What do you have the running total evaluating and resetting on?
  6. bslaast

    Display 2 decimal places.

    I want to display 2 decmial places I currently have: LPAD(t.full_curr_amount,10,'0') t.full_curr_amount is a number.
  7. bslaast

    Display 2 decimal places

    Pardon MY ignorance, you are right... I'm using oracle.
  8. bslaast

    Display 2 decimal places

    LPAD() adds the first character in the list to the left side of a string until the string is the specified length. Examples LPAD("APPLES", 10, ".") = "....APPLES" LPAD("APPLES", 10) = " APPLES" LPAD("APPLES", 3) = "APP"
  9. bslaast

    Display 2 decimal places

    I want to display 2 decmial places I currently have: LPAD(t.full_curr_amount,10,'0') t.full_curr_amount is a number.
  10. bslaast

    Display Current Date in mm/dd/yy format

    that is giving me a time: 57/12/10
  11. bslaast

    Display Current Date in mm/dd/yy format

    How can I display the current date formatted dd/mm/yy in a text box? I currently have: textbox.text = now() but that displays a date time format of dd/mm/yyyy hh:mm:ss
  12. bslaast

    Rolling 12 Months

    Great, Thanks.
  13. bslaast

    Rolling 12 Months

    the result of the formula - 201008, 201007, 201006 etc
  14. bslaast

    Rolling 12 Months

    How do I get the variable to display in the page header?

Part and Inventory Search

Back
Top