Excel Vlookup日期,

Excel Vlookup date,

我有 2 个 excel sheet 1 个链接到访问数据库并从中提取信息,1 个用户可以在其中输入他们的工作时间信息。

我正在尝试做一些数据验证,这样如果日期有任何信息,它在数据库中有与之关联的信息,那么它将显示该数据,而不是 00:00:00 在我的另一个 sheet。我现在已经将其简化为相同的 sheet 直到我可以让它工作

我试过 =VLOOKUP(K1,A:I,4,FALSE) 显示 #N/A

其中 K1 是我正在搜索的日期,我附上了我的 table 的图片,它会在加载时刷新。

我的最终目标是让它搜索日期 (kpi_date) 和姓名 (ad_name) 并在每一列中显示信息。

非常感谢任何帮助

亲切的问候

http://i.stack.imgur.com/DDOjO.png

你很可能想要

=VLOOKUP(K1,B:C,2,FALSE) 

=VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])

lookup_value = the value you want to search with and for

table_array = the data you want to search in, the most left column is used to >look for the date in - ie (col B)and the rest of the columns can be used as a >return value(col C in your example)

col_index_num = the column you want to return for the table_array as an index >of the table , column 2 of the table_array

[range_lookup] = optional (TRUE if omitted) TRUE will take the nearest match >in the most left column (sorted table is needed to work accurately) set to >FALSE for an exact match to be found(sort not needed)

在所有情况下,从顶部找到的第一行是用于获取 return 值的行,即使列 B

中存在多个值也是如此