Coding question
I am trying to write code on a command button that will move through a specified table record by record preforming action based on data found in the table. I am just unsure of what syntax to use. These are the exact operations im trying to do written in psudocode:
1. maximum = Table.ScheduleTime.Count#ofRecords
2. for(index to maximum)
If(Table.ScheduleTime.index.Time = "9:00AM" Then
***scheduletime is the name of the table
***index is the record we are on
***Time isthe value in the record im testing against
|