You should give more information !
What column header are you speaking of ?
What is the data type of 'PDF Page ?
Above is what I was about to post!
Then, in the mean time I looked at all your posts to find which project I had posted and found it.
The Table is the Table class.
Your problem is, as Mahares suspected already, that, by default, the table class is filled with texts even if the column data in the database is integer.
The solution is to replace the line below in the project I posted:
tblItems.LoadSQLiteDB(Starter.sql,"SELECT DescriptionSubjectLookup, TableNumber as [Table], PageIRC As [IRC Page], PgPDF As [PDF Page] FROM TableList221",True)
by
tblItems.LoadSQLiteDB2(Starter.sql,"SELECT DescriptionSubjectLookup, TableNumber as [Table], PageIRC As [IRC Page], PgPDF As [PDF Page] FROM TableList221", True, Array As String("T", "T", "T", "I"))
Attached the project modified, not the one in your previous post.
For other helpers, the project you posted is of no use, because of lot of data missing!