I have the following fields in a table:
ProductCode, Day1, Day2, Day3, Day4, Day5, Day6, Day7, Day8, Day9, Day10, Day11, Day12, Day13, Day 14
I need to create a query which will create 3 outputs fields QtyOne, QtyTwo and QtyThree
The field calculation I have at the moment is QtyOne: “Day” & Weekday(Date(),7)
The ,7 makes the weekday calculation think that Saturday is the first day of the week.
As today is Monday, this produces the output Day3
For QtyTwo I will use “Day” & Weekday(Date(),7)+1
and for QtyThree I will use “Day” & Weekday(Date(),7)+2
Problem is, how do I make QtyOne equal to the contents of the field Day3, QtyTwo equal to the contents of the field Day4 and QtyThree equal to the contents of the filed Day5 rather than the string values.