Blue
White
Purple
Green
Red
Orange
Blue Light
White Light
Purple Light
Green Light
Red Light
Orange Light
HelloIs there a way to use a lookup table that the proposed list of values is in the correct language?Actually I'm "cheating" by setting the display field in all languages used in the application as for example yes - ja - oui.For short and common terms it's ok, but rather an ugly workaround. Any ideas how to improve?Philip
Philip,if you store language in a separate column in lookup table you can add a WHERE clause that will filter out records you don't need.Lookup table exampleLanguage Value---------------French BonjourEnglish Hi Russian ПриветWHERE clause
" language='" & Session("language") & "'"
Sergey,many thanks - this works fine!Philip