Question : Autonumber a column with numbers Ascending per 10

Hallo Experts.
How can i autonumber a column in Access or Word or Excel with numbers ascending per 10.
(first row 10,second 20. a.s.o)

Answer : Autonumber a column with numbers Ascending per 10

The simplest of all solutions is of course to create a query in Access and use this query instead of the table

SELECT [Test_ID] * 10 AS NewTestID, [Test_Text]
FROM [Test_tbl]

Cheers, Andrew
Random Solutions  
 
programming4us programming4us