March 2018
Beginner to intermediate
514 pages
13h 11m
English
These functions return the number of rows and fields of a previously loaded table, respectively.
The following example shows the use of these functions:
MyData:Load WeekDay, RecNo() AS RecNo, RowNo() As RowNoInline [WeekDayMondayTuesdayWednesdayThursdayFridaySaturdaySunday]where WeekDay <> 'Tuesday';LET vNoOfRows = NoOfRows('MyData');LET vNoOfFields = NoOfFields('MyData'); TRACE NoOfRows() returns 6;TRACE ;TRACE NoOfFields() returns 3;Exit Script;
Read now
Unlock full access