I have two tables
ACCOUNTS
with fields
(AccountNumber, Name, AccountTypeID, Address, Phone, Date A/C Opened)
And
TRANSACTIONS
(TransactionID, TransactionDate, Particular, ChequeNo,AccountNumber,AccountTypeID, Rate, WithdrawalAmount, DepositAmount)
I created a query based on these two tables
CUSTOMER
(AccountNumber, TransactionDate, Days)
In this query Days: (NextTransactionDate-TransactionDate)
How I access NextTransactionDate of a specific Account in the record?
ACCOUNTS
with fields
(AccountNumber, Name, AccountTypeID, Address, Phone, Date A/C Opened)
And
TRANSACTIONS
(TransactionID, TransactionDate, Particular, ChequeNo,AccountNumber,AccountTypeID, Rate, WithdrawalAmount, DepositAmount)
I created a query based on these two tables
CUSTOMER
(AccountNumber, TransactionDate, Days)
In this query Days: (NextTransactionDate-TransactionDate)
How I access NextTransactionDate of a specific Account in the record?