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 TouchToneTommy 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: ccclsi
  • Content: Threads
  • Order by date
  1. ccclsi

    basic help with CR 8.5 if then else statement

    Hi, here is what i want to have happen (If {CUST_ORDER_LINE.UNIT_PRICE} <= {PART.UNIT_PRICE} then [({CUST_ORDER_LINE.UNIT_PRICE} * {CUST_ORDER_LINE.TRADE_DISC_PERCENT}) when {CUST_ORDER_LINE.TRADE_DISC_PERCENT} <> 0 ] else {PART.UNIT_PRICE};) * {RECEIVABLE_LINE.QTY} i am sure it is a syntax...
  2. ccclsi

    Help with a formula in CR 8.5

    Hi, I have a report where i would like to have 1 column that will look at 3 fields, (part.fabricated, part.purchased, and part.detail_only) these fields have either a "Y" or "N". What i would like to do is have a formula that says "if part.fabricated = "Y" then "F" else part.purchased ="Y" then...
  3. ccclsi

    How to write selection expert query for multiple criteria in Crystal s

    Here is the selection criteria i have : ( ({PART.QTY_IN_DEMAND} <> 0.00) and ({PART.ORDER_POLICY} <> ["D", "E"]) and ({PART.DETAIL_ONLY} = "N") and {PART.ENGINEERING_MSTR} = "Q" ) OR ( ({PART.QTY_IN_DEMAND} <> 0.00) and (({PART.PLANNING_LEADTIME} = 0.00) OR ISNULL({PART.PLANNING_LEADTIME}))...
  4. ccclsi

    need to query most recent 6months of usage

    I have a report where i have figured out how to pull the most recent 12 months of part usage, here is the select statement: {INVENTORY_TRANS.PART_ID} like {?PART_ID} and {INVENTORY_TRANS.TYPE} = "O" and {INVENTORY_TRANS.TRANSACTION_DATE} >= dateadd("yyyy", -1, currentdate) and...
  5. ccclsi

    crystal report syntax to pull year to date info.

    Hi, i know this is noob issue but i need to get transaction info for previous 12 months and previous 6 months with monthly average for each. Here is select expert: {INVENTORY_TRANS.PART_ID} like {?PART_ID} and {INVENTORY_TRANS.TRANSACTION_DATE} >= Date (0, 0, 0) makes sense to me...

Part and Inventory Search

Back
Top