Recent content by FlyGuyTray

  1. F

    Average Date

    Very Good point vbaInet! and thanks a bunch folks..
  2. F

    Average Date

    HOw would i do that?
  3. F

    Average Date

    I am having a bit of trouble returning the average creation date for open items in my database.. I thought it easy to create a query where i select "AVG" on the "DateCreated" field. But instead of returning a date, it returns a number...
  4. F

    Concatenate? Trim?

    Thanks! you guys always come through in the clutch..
  5. F

    Concatenate? Trim?

    I am trying to drop the last 6 characters in a column... for example: I would like to make this: 123456-123456_12345 This: 123456-123456 i tried using "concatenate(Right(A1,6))" in excel but that returned the last 6 characters and trim did the same. Could someone point me in the right...
  6. F

    Create a Relationship between 2 different field types

    i dont follow your solution.. "Val()"
  7. F

    Create a Relationship between 2 different field types

    trust me this is not the most shocking thing that i've seen since i've been working with this group..
  8. F

    Create a Relationship between 2 different field types

    No clue.. not my databases.. i asked the same question..
  9. F

    Create a Relationship between 2 different field types

    Can i link a text field to a number field? I have to linked tables. In one table I have a field, lets call it "Example", which is populated with a 6 digit number and defined as a number.. In the other table the same field exists but it is defined as text.. The 2 tables are linked so I can't...
  10. F

    Column Comparison

    Comments wasnt at first a date field but i made it a date field.. It had text and a date in the field. I removed the text to leave the date and changed the type to date.. Basically the 3 date fields are installation dates for a piece of equipment. unfortunately because of bad record keeping we...
  11. F

    Column Comparison

    Function ReturnEarliestDate(strInput As String, strDelimiter As String) As Date Dim varSplit As Variant Dim i As Integer Dim dteHold As Date varSplit = Split(strInput, strDelimiter, , vbTextCompare) dteHold = varSplit(i) For i = LBound(varSplit) To UBound(varSplit)...
  12. F

    Column Comparison

    Still throwing errors..
  13. F

    Column Comparison

    Question: if there is a null in one of the 3 columns will the it produce in an error?
Back
Top Bottom