Have you ever tried the SQL view? The SQL is what the database engine actually understands - the Design view merely creates SQL from your input, and therefore sometimes creates the WRONG SQL, or SQL that takes ages to execute!<br>
<br>
Back to your question. I suggest using Copy, Paste in SQL.<br>
If eg. your statement says :<br>
SELECT h1+g1 AS W1, Surname, Firstname FROM tableName ...<br>
then copy paste the "h1+g1 AS W1," multiple times and then merely replace the number "1" with "2" etc. <br>
I can't think of any faster way.