All I wish to do is copy the customerCreditLevel to the customerLastMonthsCreditLevel. What criteria do I need to this. This is all I would like to do.
I don't understand what you want to accomplish. Do you want to update the customerLastMonthsCreditLevel field with what's in the customerCreditLevel field. If so for which records?
Please show us an example of the data before and after this copy would occur.
I don't understand what you want to accomplish. Do you want to update the customerLastMonthsCreditLevel field with what's in the customerCreditLevel field. If so for which records?
Please show us an example of the data before and after this copy would occur.
All I want is the data in the current credit level to be copied into the last months credit level. Eg. Current credit level : £10, after query run last months level £10 a simple copy and paste
This query (Edit: Updated per Gasman's observation)
Code:
UPDATE tblCustomer SET [tblCustomer]![customerLastMonthsCreditLevel] = tblCustomer.customerCreditLevel;
would do what I think you are saying but this doesn't make any sense to me as you will just end up with two fields that have that same value so I suggest you backup you database before trying this.
UPDATE tblCustomer SET tblCustomer.customerCreditLevel = [tblCustomer]![customerLastMonthsCreditLevel];
would do what I think you are saying but this doesn't make any sense to me as you will just end up with two fields that have that same value so I suggest you backup you database before trying this.