Dec 20, 2007 #1 ceej IS-IT--Management Joined Jun 20, 2001 Messages 46 Location US Is it possible to do something like this? For i = 1 to 10 Qty = SalesPeriod(i) Next i Where the actual field names are SalesPeriod1, SalesPeriod2, etc.
Is it possible to do something like this? For i = 1 to 10 Qty = SalesPeriod(i) Next i Where the actual field names are SalesPeriod1, SalesPeriod2, etc.
Dec 24, 2007 #2 yogurt21 Technical User Joined Dec 11, 2007 Messages 6 Location US You should be able to make a statement like this For i = 1 to 10 Qty = SalesPeriod& totext(i) Next i Upvote 0 Downvote