Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've an access database table with 3 fields :

  • Purchase date
  • Warranty time
  • Warranty expiry

Warranty time has 1, 2, 3, 4, 5 in it which corresponds to years.

How can I auto-populate the 'Warranty expiry' field (which is a date field) by looking at the 'Purchase date' and then adding on the 'Warranty time' (warranty time will be 1 = 365 days, 2 = 730 days, etc)?

share|improve this question

3 Answers

Do not use days, use DateAdd function or DateSerial

DateSerial(Year(PurchaseDate)+WarrantyTime, Month(PurchaseDate), Day((PurchaseDate))

DateAdd("yyyy", WarrantyTime, PurchaseDate)

See: http://www.techonthenet.com/excel/formulas/dateadd.php

share|improve this answer
2  
Yes. A much better solution - adding 365 days per year doesn't work if there is a leap year involved. – CodeSlave May 6 '10 at 18:50

Do you have a compelling need to actually store values for Warranty expiry?

The reason I asked is because storing derived values is generally considered bad practice. You could easily derive Warranty expiry from Purchase date and Warranty time whenever you need it. If you store Warranty expiry, you need to make sure the value gets updated whenever Purchase date and/or Warranty time change. You can use methods to minimize the risk the values can get out of sync, but you don't need any of those extra efforts if you're not storing the value in the first place.

share|improve this answer

Assuming that you have a form you can add the following code to the AfterUpdate events associated with the controls for PurchaseDate and WarrantyExpiry:

Me.WarrantyExpiry.Value = DateAdd("d", Me.WarrantyTime.Value * 365, Me.PurchaseDate.Value)

If you want to run a query you can use the following similar sql:

UPDATE Table1 SET Table1.WarrantyExpiry = DateAdd("d",[WarrantyTime]*365,[PurchaseDate]);
share|improve this answer
2  
Years and days are not an exact match. days should not be used to represent years. – Remou May 6 '10 at 15:14
1  
If you have a warranty expired field in an SQL Server database that needs to be updated, have you considered a trigger? I think it would be safest. Otherwise, is a view in SQL Server possible? Another possibility is a pass-through query in Access, but this is the least desirable solution. – Remou May 7 '10 at 10:19
3  
If you don't know how to use aliases, then you need to learn. In my humble opinion, if you don't know how to do something that basic, you don't know enough to query any database. – HLGEM May 7 '10 at 17:54
1  
I've used Access and I would not allow anyone to touch any database of mine if they used the QBE form. If you don't know what you are doing, it is too dangerous to let you touch my database. – HLGEM May 7 '10 at 19:43
1  
@HLGEM....I can please only one person per day. Today is not your day. Tomorrow isn't looking good either. If you haven't got anything to say which would help me, kindly go away. – Scott Jackson May 10 '10 at 6:31
show 19 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.