如何用access计算年龄

用[DepartureDate]和[Birthdate]进行计算,说明如下Calculate the difference between the Birthdate and DepartureDate; then divide the difference by 365.Use "\"symbol instead of"/"for the division. this will result in the largest number years without any decimal values(whole number of years)。

我们先把说明翻译一下:计算出生日期和死亡日期之间的天数之差,然后用天数之差除以365。用"\"符号代替"/"做除法运算,之后将会得出不带小数点的最大整数。

待翻译后就很容易理解是什么意思了,希望能帮到你。