I have a form to keep track of invoices. One field is for VAT. Since I get invoices from all over the world, I have to store different VAT %. I use a diologbox and a formula to choose values, This is the formula: @DbColumn("":"NoCache";"";"Maintenance/VAT";1). This column reflect to a (sub)view called VAT. The first (and only) column displays VAT % like 0, 6, 17.50, 19. This column also displays words "dev." to say that an invoice has different VAT %.With the above formula I can retrive the data for the field "VAT" from the view "Maintenance/VAT". That works alright. The problem is that new value's are not stored, e.g. if I get an invoice from Belgium the VAT % is 21. I can edit the field VAT (which default value is 19) and change the 19 into 21. Then I save the record but when I add a new invoice the keywords don't include the new added keyword. I now work around that problem by adding the value directly into the view "Maintenance/VAT". Then I go back to the form and choose the value from the keyword list. Standard templates however store new keywords, but I can't get it to work. What am I doing wrong, because in my opinion I use the correct formula. Any suggestions anybody ??