问题描述
你好 -
我有点麻烦。我想创建一个查询,该查询将返回查询中某个字段中所有唯一值的最新记录(按日期)。我也将从3个不同的表中提取数据。由于我的描述通常不充分,这里有一个简单的例子:
查询之前:
日期字段
1/1/07 A
1/2/07 A
1/2/07 B
1/2/07 C
1/3/07 A
1/4/07 B
查询后:
日期字段
1/3/07 A
1/4/07 B
1/2/07 C
这有意义吗?有一个简单的解决方案吗?
尝试使用DMax。
= DMax(" [Date]"," TableName"," [name] =''"& [Forms]![MainFormName]![name]&"''")
Hello-
I''m having a little trouble. I want to create a query that will return the most recent records (by date) for all unique values in a certain field in the query. I''ll be pulling data from 3 different tables as well. Since my description is usually inadequate, here''s a simple example:
Before Query:
Date Field
1/1/07 A
1/2/07 A
1/2/07 B
1/2/07 C
1/3/07 A
1/4/07 B
After Query:
Date Field
1/3/07 A
1/4/07 B
1/2/07 C
Does that make sense? Is there a simple solution?
Try using DMax.
=DMax("[Date]","TableName","[name]=''" & [Forms]![MainFormName]![name] & "''")
这篇关于查询唯一字段值的最新记录的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!