Results 1 to 10 of 10
  1. #1
    Giulia is offline Novice
    Windows XP Access 2007
    Join Date
    Sep 2012
    Posts
    5

    How to point out missing terms of a glossary?

    Hello,


    I have a glossary with english terms in one column and french in another. The french glossary misses some terms. The final result I have to reach is another the glossary with the addition of a third Column in which the missed terms of the french column are pointed out.
    Could anybody help me? I haven't any idea about how to do it.
    Thank you very much!

  2. #2
    June7's Avatar
    June7 is offline VIP
    Windows XP Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,928
    What do you mean by 'misses' some terms? How do you know some are 'misses'?
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

  3. #3
    Giulia is offline Novice
    Windows XP Access 2007
    Join Date
    Sep 2012
    Posts
    5
    I see that in some cells there is not the corresponding translation of the english terms... I would send you the glossary to show you but i don t know if here i can do it..

  4. #4
    June7's Avatar
    June7 is offline VIP
    Windows XP Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,928
    A third column is not needed. Just do a query that retrieves records where the field is null:

    SELECT * FROM table WHERE French Is Null;

    Can attach files to post. Follow instructions at bottom of my post.
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

  5. #5
    Giulia is offline Novice
    Windows XP Access 2007
    Join Date
    Sep 2012
    Posts
    5
    The exercise ask me explicitly about another column...

  6. #6
    June7's Avatar
    June7 is offline VIP
    Windows XP Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,928
    This is homework? What is the exact wording of the assignment? Maybe you should get clarification from instructor.

    What do you want the third column to show - a value like 'Missing' or 'NotMissing'?

    Doesn't make sense to me. If the field is empty, the lack of value is obvious. Why is another column with some value needed?
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

  7. #7
    Giulia is offline Novice
    Windows XP Access 2007
    Join Date
    Sep 2012
    Posts
    5
    Yes this is an exercise my professor sent me in order to practice for my exams. In the third column you must see the english words that don t have a french translation.
    Sorry for the confusion!

  8. #8
    June7's Avatar
    June7 is offline VIP
    Windows XP Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,928
    Still doesn't make sense. The third column is just replicating the English column.

    Assuming French and English are field names:
    SELECT *, IIf(IsNull(French),English,Null) As Missing FROM table;
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

  9. #9
    Giulia is offline Novice
    Windows XP Access 2007
    Join Date
    Sep 2012
    Posts
    5
    where do i have to write it?

  10. #10
    June7's Avatar
    June7 is offline VIP
    Windows XP Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,928
    Use the Access query designer. You can build in the design grid or type the statement in the designer SQL View. This is basic Access query functionality. Refer to Access Help, web tutorials, or textbook.
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Bold search terms in Query result for report
    By NewbieInCT in forum Queries
    Replies: 3
    Last Post: 05-25-2012, 11:37 AM
  2. Can someone point to to a tutorial
    By Poker4dbs in forum Forms
    Replies: 8
    Last Post: 08-05-2011, 12:30 PM
  3. Replies: 2
    Last Post: 05-25-2010, 02:45 PM
  4. What is the point of different modules?
    By cowboy in forum Programming
    Replies: 3
    Last Post: 03-29-2010, 10:43 PM
  5. Managing Point in Time
    By Stressed in forum Programming
    Replies: 0
    Last Post: 03-01-2010, 08:47 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums