Dec 20, 2007 #1 ceej IS-IT--Management Jun 20, 2001 46 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 Dec 11, 2007 6 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