G
Guest
Hi,
We are trying to have a filing system where we can put away files by Funding
Date and last three digits of the Loan Number.
For example:
FundDate = 04/05/2005
Loan_Number = 0011111030
BorrowerName = Randall Clemson
Filing Label should look like the following:
Apr-05-030
RANDALL CLEMSON
How can I make the Date format this way on a query? If possible, how can I
combine both fields?
Here is what I have which we tested and work fine but we want it better.
SELECT tblLoans.FundDate, Right([tblLoans].[Loan_Number],3) AS TriDigits
FROM tblLoans;
Jose Aleman
We are trying to have a filing system where we can put away files by Funding
Date and last three digits of the Loan Number.
For example:
FundDate = 04/05/2005
Loan_Number = 0011111030
BorrowerName = Randall Clemson
Filing Label should look like the following:
Apr-05-030
RANDALL CLEMSON
How can I make the Date format this way on a query? If possible, how can I
combine both fields?
Here is what I have which we tested and work fine but we want it better.
SELECT tblLoans.FundDate, Right([tblLoans].[Loan_Number],3) AS TriDigits
FROM tblLoans;
Jose Aleman