Thanks Pete
That's certainly a lot easier than doing hours of cut and paste in excel!!!
See statement below which works, but not using phpmyadmin over the net. It only filled the table as far as 127 rows before coming up with an error (something to do with phpmyadmin, dump.php.) Maybe I'll try when there's less traffic or Ill have to load it locally + mySQL and try again (not very stable on Windows ME)
At least I know it works from the rows it did fill.
INSERT INTO tbl_cartesian (pump_desc, capacity_id, chemical_id, back_pressure_id, control_option_id, power_supply_id)
SELECT A.pump_desc, B.capacity_id, C.chemical_id, D.back_pressure_id, E.control_option_id, F.power_supply_id
FROM tbl_pump A, tbl_capacity B, tbl_chemical C, tbl_back_pressure D, tbl_control_option E, tbl_power_supply F
Will it make a difference to the select statement in the selection page as I will now have every single combination possible whereas if I had filled the crossover table manually (which I wouldn't have done!!) it would have had only the correct combinations ie I would have left out where a capacity wasn't available to a particular pump etc?