Results 1 to 7 of 7
  1. #1
    Chard14 is offline Novice
    Windows XP Access 2003
    Join Date
    Oct 2010
    Posts
    3

    How to create Current/Superseded Record and Hyperlink


    Hello, I want to know how can i create that will show that an added record is a current revision and the previous same record is superseded. For Ex.

    Code:
    Description, Rev Status Hyperlink
    General layout, 01 Current eCopy
    General layout, 00 Superseded 
    And I want to know how to hyperlink multiple records with different filename the ecopy of it but the Current Status only.

    Hope somebody will help me...thanks

  2. #2
    ajetrumpet is offline VIP
    Windows Vista Access 2007
    Join Date
    Mar 2010
    Location
    N/A
    Posts
    2,694
    generally, you will never store information from an 'old version' of records. If you do want to though, google something like "ms access archive records". there are archiving systems in place I'm sure, but I personally have never used them.

    of course, you can also do it yourself simply by writing a little bit of code.

  3. #3
    LillMcGill is offline Dagny fan
    Windows 7 Access 2010 (version 14.0)
    Join Date
    Oct 2010
    Location
    Southern USA
    Posts
    70
    Add a DateEntered field and set the Default value to Now().

    "And I want to know how to hyperlink multiple records with different filename the ecopy of it but the Current Status only"
    I don't know what you mean, but it doesn't sound good.

  4. #4
    Chard14 is offline Novice
    Windows XP Access 2003
    Join Date
    Oct 2010
    Posts
    3

    How to create Current/Superseded Record and Hyperlink

    =IF(A11=A10,"Superseded","Current") ===> This is my formula in Excel
    I want to know the equivalent MS Access formula.


    =IF(L11="Current",HYPERLINK("C:EFile"&"\"&J11&"\"&A B11,AB11),"") ====> My formula in Excel, I want to know the equivalent MS Access Formula.

    The Current and Superseded are automatic if new records are added and sort.The hyperlink are automatic with different filename.
    I have thousand of record to be in place and would like to use MS Access.

    Help!Thanks.

  5. #5
    NoellaG's Avatar
    NoellaG is offline VIP
    Windows 7 Access 2010 (version 14.0)
    Join Date
    Jun 2010
    Location
    Belgium
    Posts
    1,173
    Hi Chard,

    the equivalent for the "if"excel function in Access is the Iif function (immediate if)

    gr
    NG

  6. #6
    Chard14 is offline Novice
    Windows XP Access 2003
    Join Date
    Oct 2010
    Posts
    3

    Unhappy

    @NG
    I know the Iif...but how about the condition (A11=A10,"Superseded","Current")

  7. #7
    NoellaG's Avatar
    NoellaG is offline VIP
    Windows 7 Access 2010 (version 14.0)
    Join Date
    Jun 2010
    Location
    Belgium
    Posts
    1,173
    Hi,

    that depends on your database structure. A database doesn't have cells, but records and fields, so you will probably have to compare the content of 2 fields and put the fieldnames in place of the cell addresses.

    grNG

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

Similar Threads

  1. Email a report of the current record.
    By jonudden in forum Reports
    Replies: 4
    Last Post: 08-21-2023, 07:37 AM
  2. copy current record to new record
    By er_manojbisht in forum Forms
    Replies: 1
    Last Post: 02-27-2010, 05:31 PM
  3. Open form to current record
    By rbpd5015 in forum Access
    Replies: 1
    Last Post: 08-28-2009, 01:53 AM
  4. Replies: 3
    Last Post: 02-13-2008, 09:55 AM
  5. Mailmerge Current Record...
    By oakleyp2 in forum Programming
    Replies: 0
    Last Post: 02-22-2006, 08:08 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