Page 2 of 2 FirstFirst 12
Results 11 to 12 of 12

Thread: Microsoft Office - Tips & Tricks

  1. #11
    Senior Member Platinum Hubber
    Join Date
    Oct 2004
    Posts
    10,586
    Post Thanks / Like
    Using Access for some quick & dirty stuff (normally prefer sql*loader to Oracle and do things there but there are some limitations at the current setup)...

    Found out that Access (2003) does not like the operator % in sql but prefers *

    i.e. if you want to write a query that goes like

    SELECT *
    FROM TABLE1
    WHERE NAME LIKE 'JO%'

    you need to write

    SELECT *
    FROM TABLE1
    WHERE NAME LIKE 'JO*'

    Interesting

  2. # ADS
    Circuit advertisement
    Join Date
    Always
    Posts
    Many
     

  3. #12
    Senior Member Platinum Hubber
    Join Date
    Oct 2004
    Posts
    10,586
    Post Thanks / Like
    Forced to learn another Excel trick when a teammate came asking for help to identify duplicates.
    (BTW, Excel 2003 - still at the same client, it's possible the newer ones have a fixed function)

    Simple solution - say column A has duplicates, we can get them "flagged" on another column (say Z) using the function countif. The expression that should be placed on cell Z1 is :

    =IF(countif(A:A,A1)>1,"DUP","")

    And drag-copy this to as many Z column rows as needed and the duplicates should show as DUP.
    (If the whole list is sorted on column A, then the duplicates should be in adjacent rows)

Page 2 of 2 FirstFirst 12

Similar Threads

  1. Tips & Tricks on using "The Hub"
    By RR in forum Hub Howto's, Tips & Tricks
    Replies: 29
    Last Post: 10th July 2017, 06:57 AM
  2. S/W & H/W Tips & Tricks!
    By c4ramesh in forum Miscellaneous Topics
    Replies: 21
    Last Post: 7th June 2006, 03:52 AM
  3. ARR Music In Microsoft?
    By MusicIsLife in forum A.R. Rahman (ARR) Albums
    Replies: 2
    Last Post: 13th December 2005, 09:52 PM
  4. KITCHEN TIPS & TRICKS
    By rajsand in forum Indian Food
    Replies: 11
    Last Post: 28th June 2005, 11:55 PM
  5. Ice Cream recipes--Tips & Tricks
    By nutcr0cker in forum Indian Food
    Replies: 1
    Last Post: 19th June 2005, 04:52 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •