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!

Recent content by AlohaMichael

  1. AlohaMichael

    Rolling 12 month report - Very Difficult Version 8.5

    I guess I need to clarify something. The above solution wouldn't work because each period is its own field. The field name list is: ITEM, YEAR, PERIOD1, PERIOD2, PERIOD3, PERIOD4, PERIOD5, PERIOD6, PERIOD7, PERIOD8, PERIOD9, PERIOD10, PERIOD11, PERIOD12 The values stored would be something...
  2. AlohaMichael

    Rolling 12 month report - Very Difficult Version 8.5

    I need to create a report where the user will enter in a date and then can see the quantity sold on their items from the prior 12 months. It must run under version 8.5. Setup Table has the following fields Year, ItemNumber, Period1, Period2, Period3, Period4, Period5, Period6, Period7...
  3. AlohaMichael

    Visual Basic coding to show users in MS Access Database

    Code I use all the time to grab the network login name. Doesn't show who is currently logged in though. Function GetUserName() As String 'Buffer size for the return string. Const lpnLength As Long = 255 'Get return buffer space. Dim status As Integer 'For getting user information. Dim...
  4. AlohaMichael

    Inventory DDE to Excel

    The macro assumes the following: 1. Worksheet name is "InventoryPriceSheet" (without the quotes) 2. You list the Item ID's on row 5 in Column A 3. You create the button to run the macro on the "InventoryPriceSheet" worksheet 4. You know what a macro is 5. You know what Peachtree is 6. You own a...
  5. AlohaMichael

    Need Code to take me to a NEW record in a form with a subform!

    DoCmd.GoToRecord acDataForm, "theNameofyoursubform", acNewRec You must have the form open for it to work. Since its a subform I assume it will be open.
  6. AlohaMichael

    Expanding Group Decimal Points CR v8.5

    This is related to topic # 767-878823 http://www.tek-tips.com/gviewthread.cfm/lev2/4/lev3/100/pid/767/qid/878823 I want to be able to group on the Integer portion and have all of the related documents listed underneath. for example +17.000 17.001 17.002 17.005 17.006 but CR is...
  7. AlohaMichael

    A better sort formula - CR v8.5 - Code sample included

    Thanks mbarron. I was over thinking the problem. Val function is exactly what I needed.
  8. AlohaMichael

    A better sort formula - CR v8.5 - Code sample included

    I have a list of ID's stored in a string field in an sql database. (see lists below) I would like to use a formula to get the proper sorting. The issue is CR is sorting them like below. Default Desired Sorting Sorting RFIID RFIID 001.001 001.001 002...
  9. AlohaMichael

    Version 10 Passing Parameters to Record Selection in Peactree

    DOH! I feel like such an idiot for not remembering that. Thank you for your help. Works like a charm.
  10. AlohaMichael

    'Formula too long' Error

    You seem to be going about it the wrong way. I would think if you can create another table in your database and link the fields. IF you can't create another table you could try a select case statement Select {SOP30200.ZIPCODE} case 0121 : "Glenbervie" case 0122 : "Hukerenui" default ...
  11. AlohaMichael

    compound capital interest

    I do the same thing for AR Statements to customers. One variable in the report header looks like this: shared numbervar ar_intrate; ar_intrate := 0.12; second variable in the detail section looks like this: shared numbervar ar_intrate; shared numbervar int30; if {JrnlHdr.MainAmount} -...
  12. AlohaMichael

    Version 10 Passing Parameters to Record Selection in Peactree

    Using standard version 10 of Crystal Reports. Database is Peachtree = Btrieve (customized) does not allow for SQL expressions. I have multiple companies in Peachtree. Each Company has its own set of tables. Table definition for each company are identical but are not linked in any way. I would...

Part and Inventory Search

Back
Top