Results 1 to 4 of 4
  1. #1
    andy.101 is offline Novice
    Windows 7 64bit Access 2010 32bit
    Join Date
    Sep 2017
    Posts
    7

    Cell History (edit history)

    Hey,



    Is there a way to keep history of what has been written in a specific cell?

    I.e. I am creating a help desk in Access.

    I have a column called 'Solutions'

    I want our staff to write the solution they have tried in the cell. If the solution works it will stay there but if it doesn't I want them to put a new solution in, however I want to keep a history of the solutions tried, this is so that if a member of staff gets assigned an 'open' ticket they know what methods have already been tested.

    Thanks for any help

  2. #2
    ranman256's Avatar
    ranman256 is offline VIP
    Windows Vista Access 2010 32bit
    Join Date
    Apr 2014
    Location
    Kentucky
    Posts
    9,525
    put a button to 'revise' solution.
    the click event would run an append query to the tSolutionOld table (or the like)
    and allow user to change the text box,

    docmd.openquery "qaAddOldSolution"
    txtBox.locked = false

  3. #3
    andy.101 is offline Novice
    Windows 7 64bit Access 2010 32bit
    Join Date
    Sep 2017
    Posts
    7
    Could I use ColumnHistory to do this? I.E I have a box called Solution and then a box call Solution History, could this box on the form have a ColumnHistory ?

  4. #4
    Join Date
    Apr 2017
    Posts
    1,681
    Add a new table tblSolutions: SolutionID, CaseID, Solution, SolutionStatus.
    SolutinStatus will have 2 (p.e. 1 - approved; 2 - discarded) or more (p.e. 1 - the best solution, 2 - alternative solution, 3 - in testing, 4 - discarded) numeric values.

    Remove Solution field from helpdesk cases table (Sorry, but I don't know your real table name and structure).

    Add a subform based on Solutions table into form you use to display helpdesk cases. Link both forms with CaseID.

    Into helpdesk cases form add a combo to select filter condition for Solution subform with set of selections. Selecting the condition must set filter on subform (like "SolutionStatus = 1", or "SolutionStatus < 4").

    Additionally you have to design OnCurrent event for helpdesk cases form, to initialize solution status selection combo and set subform filter whenever a new case is selected. It is up to you how you define according rules (a possible rule is that by default the status with smallest value is displayed).

    Whenever for solution in subform the SolutionStatus is set to 1, and there was previously another solution with status 1, another status for this previously approved/best solution is given (i.e. there can be only one solution with status 1).

    Now, when you activate a case, a solution with status 1 (or solutions with smallest value, p.e. 3 when you have such status for solutions in testing) is displayed in subform. When you change the filter condition, alernative solutions are displayed, or best and alternative solutions, or discarded solutions, or all solutions, ... And you can change statuses for any solution whenever you want or add new solutions whenever such are discovered.

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

Similar Threads

  1. Your query history
    By aftfm in forum Access
    Replies: 11
    Last Post: 10-21-2014, 01:03 PM
  2. Keep History
    By imtiaz703 in forum Access
    Replies: 1
    Last Post: 05-18-2012, 04:49 PM
  3. Keep History of Customers
    By imtiaz703 in forum Access
    Replies: 4
    Last Post: 02-23-2012, 02:57 PM
  4. History
    By jgalloway in forum Database Design
    Replies: 4
    Last Post: 10-04-2011, 02:27 AM
  5. Client History
    By janjan_376 in forum Access
    Replies: 1
    Last Post: 06-23-2009, 02:44 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