Skip to content

Latest commit

 

History

History
61 lines (36 loc) · 1.45 KB

Access.Application.ColumnHistory.md

File metadata and controls

61 lines (36 loc) · 1.45 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.ColumnHistory method (Access)
vbaac10.chm12620
vbaac10.chm12620
Access.Application.ColumnHistory
e2c1b71f-6561-b38d-8173-9926bc4bd9da
02/05/2019
medium

Application.ColumnHistory method (Access)

Gets the history of values that have been stored in a Memo field.

Syntax

expression.ColumnHistory (TableName, ColumnName, queryString)

expression A variable that represents an Application object.

Parameters

Name Required/Optional Data type Description
TableName Required String The name of the table that contains the Append Only field.
ColumnName Required String The name of the field to display the history for.
queryString Required String A String used to locate the record. It's like the WHERE clause in an SQL statement, but without the word WHERE.

Return value

String

Remarks

A Memo field's AppendOnly property must be set to True for Access to store the change history for the field.

Example

The following example prints the salary history of employee number 147 to the Immediate window.

Sub colhist() 
 Dim sHistory As String 
 
 sHistory = Application.ColumnHistory("Employees", "Salary", "ID=147") 
 Debug.Print sHistory 
End Sub

[!includeSupport and feedback]