Quote Originally Posted by maghari View Post
nice updating thanks paul about the total i would be under last row is filling not every time i select from dropdown it move the total under it as your picture the total should in d9 if i change selection it moves d10 this is not what i would i want keeping the total in d9
Replace

.Cells(1, 4).End(xlDown).Offset(1, 0).Value = Total

with

.Cells(9, 4).Value = Total
If you add more data rows, this will replace whatever is in row 9, but if that's what you want ....