Recent content by PG2015

  1. P

    "Tick" result used in a query result

    Great - thanks for your help
  2. P

    "Tick" result used in a query result

    That makes sense - thanks very much for your help
  3. P

    "Tick" result used in a query result

    Hi - Is it possible to show a tick mark instead of the word "passed"? I have the character in wingdings font but not sure that can be used in this way? PassStatus: IIf([status]=0,"X",IIf([status]=1,"Passed","error")) Thanks PG:banghead:
  4. P

    Decimal value to time value

    Thanks very much - can use that too. Thanks again
  5. P

    Decimal value to time value

    Look at that - spot on! Thanks very much
  6. P

    Decimal value to time value

    As easy as it sounds I don't seem to be able to get this right. Looking for a query that will take a value say 4.5 and convert to datevalue in hours so will end up as 04:30:00 Any help appreciated. Thanks :banghead:
  7. P

    Odd and even

    That's got it! Thanks very much for your help.:)
  8. P

    Odd and even

    Thanks - afraid I am a bit of a numpty with access and cannot see how to construct MOD in a query string. Any example would be a great help.
  9. P

    Odd and even

    Hi scratching my head to get an IIF for odds or even in numbers. Ie if its an even number state "EVEN" in column. Obviously if odd state "ODD".:confused: Any ideas please. Thanks PG
  10. P

    Postcodes - Return only TEXT before numbers

    Thanks everyone for your help.. I think I have cheated - not sure its good but seems to work :eek: SHORTPOSTCODE: (Left([postcode],1) & IIf(IsNumeric(Right(Left([postcode],2),1))=False,Right(Left([postcode],2),1),""))
  11. P

    Postcodes - Return only TEXT before numbers

    Hi, I have a number of short postcodes ie S43 GU10 ME8 etc etc I want a run query to return only first characters before the numbers ie.. S GU ME Any ideas please? :banghead:
  12. P

    Query multiple status

    I spotted a missing quote mark on your word "small" and it works - brill! you saved me a lot of time :) Thanks for you help
  13. P

    Query multiple status

    Hi, I am sure this is simple but cannot seem to get it right. I want to run a query that returns a "small" or "medium" or "large" etc on each respective row against another columns respective numeric value... < 500 = "small" 500 up to 1000 = "medium"...
  14. P

    Boolaean y or no if cell is text or number

    Brillian - thanks so much
  15. P

    Boolaean y or no if cell is text or number

    Hi, I am looking to add a column in a query that will give a Y or No to previous column data if it contains TEXT or NUMBER (It could read "TEXT" or "NUMBER" or even Y for text or N for number). Hope I have explained that properly.:rolleyes: Thanks
Back
Top Bottom