Forum Discussion
anna_v
Staff
14 years agoHi,
Could you please clarify how you populated the myXlsTable variable in your project? Is it a Project or ProjectSuite variable?
I have created a ProjectSuite variable and the following script code works correctly with your Excel table:
function Test2()
{
ProjectSuite.Variables.myXlsTable.Reset();
while(!ProjectSuite.Variables.myXlsTable.IsEOF())
{
Log.Message(ProjectSuite.Variables.myXlsTable.Value("Msg"));
ProjectSuite.Variables.myXlsTable.Next();
}
Ann