Hi Reinhold
This are our real rules from the shipping company:
Equal or less than 6 kg= 4.81 €
Equal or less than 11 kg= 5.77 €
Equal or less than 16 kg= 6.73 €
Additional kg 0.30 €
The additional kg means that to the quantity of 6.73 € you add up 0.30 € per each extra kg (superior to 16 kg).
This means that an order of 19 kg would be:
6.73 € (16 kg) + 0.30*3= 0,90 € (3 extra kg)= total 19 kg= 7.63 €
Until now we did it this way, using intervals of 5 kg, which is not the ideal for the customer:
Name=max 6kg; 01000<=ZIP<07000; Weight<=6; Shipping=4.81
Name=max 11kg; 01000<=ZIP<07000; 6<Weight<=11; Shipping=5.77
Name=max 16kg; 01000<=ZIP<07000; 11<Weight<=16; Shipping=6.73
Name=max 21kg; 01000<=ZIP<07000; 16<Weight<=21; Shipping=8.65
Name=max 26kg; 01000<=ZIP<07000; 21<Weight<=26; Shipping=10.58
etc
Can you please inspire us if there is any possible way to make a rule for those additional kg?
We know we can write a line for each kg but maybe there is a formula to avoid that.
Regards