You have a table with dates and prices and need to move the dates two weeks forward and the prices 20% up.
Enter the following SQL query:
UPDATE T1 SET T1.'Date' = DATEADD(week, 2, 'Date'), T1.'Price' = ('Price' * 1.2); SELECT * FROM T1 |
Save the macro and the page.
|