AcePrint Prep Expressions

you can access the table as follows:

`Table[columname, rowindex] := ‘ABC’;

Table.Cells[colindex, rowindex] := ‘ABC’;

Table.AddColumn(‘columnname’); // adds at end

Table.InsertColumn(‘columnname’, index);

Table.InsertColumnBefore(‘columnname’, ‘beforecolumn’);

Table.DeleteColumn(‘columnname’);

Table.AddRows(count); // adds to end

Table.InsertRows(index, count);

Table.DeleteRows(‘index, count);

UpperCase(Row.Curr[‘Model’])

Row.Curr[‘partno’] + ‘.jpg

FileExists(Row.Curr[‘partno’] +‘.jpg)`

You can also use Row.Next and Row.Prev for the next and previous rows.

Revised: 2023-11-01