Hi,
So far I've put in the following rules that seem to work fine to define shipping rate dependent upon volumetric size of the largest item plus £11.90 per additional item. The 1.2 multiplier is UK VAT ie 20%.
Name="Large"; 750000>MaxVolume>350001; Shipping=(41.00+((articles-1)*11.90))*1.2
Name="Medium"; 350000>MaxVolume>210001; Shipping=(31.00+((articles-1)*11.90))*1.2
Name="Small"; 210000>MaxVolume>0; Shipping=(21.00+((articles-1)*11.90))*1.2
Name="Extra Large"; 1200000>MaxVolume>750001; Shipping=(56.50+((articles-1)*11.90))*1.2
But I now need to develop these rules to take account of different UK postcodes (UK_outward and UK_area ) incurring supplements for instance:
London congestion charge zone:
W1, W2, W8, W10, W11, NW1, WC1, WC2, EC1, EC2, EC3, EC4, E1, SW1, SW3, SW7, SE1, SE11
supplement of £4 plus 20% VAT
Scotland Postcodes:
EH, DG, FK, G, KA 1-26, 29, 30, KY, ML, PA 1-19, TD
supplement of £26.09 plus 20% VAT
etc
Any help very greatly appreciated.
Thanks.
Tim