we have a function in our java based web application where user can download an excel sheet template from the web application. Fill their data in this template and then upload the same excel sheet.
The system then reads this excel file and save this data in the database.
Below is snapshot of template file with some sample data in it.
What I want is when users download template file (template file usually just has the headers, so users know which data goes in which column), excel sheet should have drop downs for Division, Product, secondary product , Region and country. So that users do not enter any invalid values in those columns.
As well, products varies according to divisions and secondary product varies according to products. Its more like dependent drop downs.
Basically I will need to create the excel sheet using Apache POI in which users will chose values from the drop dowsn instead of typing it themselevs.
Even though we do have server side validation where we check if the values entered by users are valid or not.
The reason we wnat to do this is that e.g. some users might enter country as US, some as USA and some as United states.
The same thing goes for products etc. user may enter product as GFFX or GFFX Structuring or gffx etc.
Is it possible to do this in excel sheet using POI? If not what are the other possible solutions or wasy to make sure users know what they have to enter in each columns?
EDIT 1 :
I could created the drop downs but is it possible to created the dependent drop downs?