A couple of questions

  • Thread starter Thread starter kristofer
  • Start date Start date
K

kristofer

How to increase the amount in Visual basic

eg, 28 DEC, 2003 + ?? = 28 DEC, 2005( like date, month or year)

How to combine two tables with same data field

eg, form 1(company 1 with name, title, dept), form 2(company 2 wit
name, title, dept)

combined into one form as

Name, Title, Dept, Company


Many thanks for your help.

;) ;
 
Hi,


? DateAdd("yyyy", 3, now)


See help on DateAdd for other code ( "y" for date, "m" for month, as
exemple) to be used for the first argument.


Hoping it may help,
Vanderghast, Access MVP
 
Back
Top