change date month to current month (1 Viewer)

basilyos

Registered User.
Local time
Today, 14:46
Joined
Jan 13, 2014
Messages
252
hello

i have a list of clients each with recharge date

for example i have a recharge date for client 01/05/2019 (april)

i want to renew the subscription so i should have a new date 01/08/2019 (august)

i renew every month with this expression
Code:
DateAdd("m",1,[tblPersonalInformation].[Date_of_Recharge])

but i cant use it with my new case

so any help
 

Dreamweaver

Well-known member
Local time
Today, 22:46
Joined
Nov 28, 2005
Messages
2,466
I would add a table and use that to keep track of subscritions rather than just keep updating the main clients record the advantage of adding the table is you will be able to get a history for clients and other data you could mine from queries.


mick
 

arnelgp

..forever waiting... waiting for jellybean!
Local time
Tomorrow, 05:46
Joined
May 7, 2009
Messages
19,229
01/05/2019 is may.
do you have any special formula on how to get the recharge date.
 

Mark_

Longboard on the internet
Local time
Today, 14:46
Joined
Sep 12, 2017
Messages
2,111
2nd to Mick's response.

Normally you have a process or query that adds a new record that has the "recharge" date. This record normally also holds when it is paid, amount owed, amount paid, and any other special information needed.
 

Users who are viewing this thread

Top Bottom