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. PolkManiac

    Limiting Record Occurence

    Are you sure table 2 has no duplicates? Have you tried the Select Distinct feature? Since you're pulling from two tables, but the Account number isn't the same thing on each table, how are you linking the two tables, on what field?
  2. PolkManiac

    Date/Time Diff excluding weekends

    Cool, I got it working Thanks for all your help
  3. PolkManiac

    Date/Time Diff excluding weekends

    Also, I can create a formula that's just basically the end date - the start date and it works fine - it's the weekend piece that's throwing me, if that makes sense...so I basically know the fields are OK - it's something with this particular formula that isn't working for me...
  4. PolkManiac

    Date/Time Diff excluding weekends

    both variables are a date and time - data looks like this: 01/01/2006 12:36 am
  5. PolkManiac

    Date/Time Diff excluding weekends

    I'm hoping someone can help me here as well... I am trying to use the formula below, an altered formula from ken: [code] //Main formula WhileReadingRecords; Local DateVar Start = {V_BAR_SR.TAT_START_TIME}; // place your Starting Date here Local DateVar End = {V_BAR_ACTIVITY.ACTUAL_END_DT}...
  6. PolkManiac

    need help writing an 'aging' formula

    Ok, here's another way I'm trying to do this...with a loop I'm create a DateVar 'Created' and setting it initially equal to the 'Created_Date' from the table. I'm also createing a NumberVar that's basically serving as a counter for the age. The loop basically checks the Created value and if...
  7. PolkManiac

    need help writing an 'aging' formula

    Here's what I'm trying to do. I have a day that a task was created, we'll call it 'Created_Date'. What I want to do is basically return all the records where the created date is more than 7 days old. This part is easy enough with something like {%Date} > {Created_Date} + 7 where %Date is an...
  8. PolkManiac

    Multiple If statements in one formula - not possible?

    I have the following series of IF statements in one formula, but when I try to save it's telling me that "The remaining text does not appear to be a part of the formula", and selects everything after the first If...Else statement. I would think this could be avoided with the EndIf command, but...

Part and Inventory Search

Back
Top