In my query i have a field that is titled "date_achieved", and another that is titled expires_(months).
for example the date_achieved field may hold 01/01/2020. The
expires_(months) may hold 24 months.
I have made a new field (an expression) that is supposed to give the date of the expiration. In this case it should return 01/01/2022.
I have been trying to work with this frame:
DateAdd("m", 24, "01/01/2020")
But the date and value of moths could change so i need to allow for this. This is what I have come up with:
DateAdd("m",[expires_(months)],"[date_achieved]")
But it doesnt work. Can someone help me please
for example the date_achieved field may hold 01/01/2020. The
expires_(months) may hold 24 months.
I have made a new field (an expression) that is supposed to give the date of the expiration. In this case it should return 01/01/2022.
I have been trying to work with this frame:
DateAdd("m", 24, "01/01/2020")
But the date and value of moths could change so i need to allow for this. This is what I have come up with:
DateAdd("m",[expires_(months)],"[date_achieved]")
But it doesnt work. Can someone help me please