I want to number 90000 passwords on 1500 pages 4 columns each column has 15 numbers in it
The first number is on the first page, the second number on the second page, and so on, to 100 pages
I want to number 90000 passwords on 1500 pages 4 columns each column has 15 numbers in it
The first number is on the first page, the second number on the second page, and so on, to 100 pages
look at using the mod and \ operators to specify an order
you'll need to determine the page, column and row values for each value then sort by these calculated values
a similar question to this was asked some time ago, but can't find the thread right now
to get you started, the page number would be calculated as something like
((password-1)\3)+1 - the 3 because you want these in groups of 3 per page
e.g.
?((1-1)\3)+1
1
?((2-1)\3)+1
1
?((3-1)\3)+1
1
?((4-1)\3)+1
2
edit: you will need to present more realistic data - based on what you are showing 1201 should not be on page 1. You say 4 columns, but are showing 5 and say 1500 pages then 100 pages. All of these will have an impact on what the actual calculation is