This tutorial would show how to use a basic range based data validation in LibreOffice Calc using a drop down list.
While accepting data in a Calc sheet, it is possible to provide the user a choice of items in a form of a drop-down list. Users can select the desired value from the drop-down instead of custom text. This eliminates the possibility of error, duplicate in the data entry/collection process.
Let’s look at how this can be done using an example.
Data Validation using Dropdown
Say, we want users to select their favorite fruits in cell B1 from a list of fruits which is F1:F4.

Select cell B1 and from the menu select Data -> Validity.
In the Validity window, Criteria tab, select “Cell Range” against Allow field.
Check Show selection list and un-check allow empty cells.
In the source field, click the small Shrink button at the right and select the F1:F4 range.
Press Ok.
Results
In cell B1, you can see a small down-arrow button. Click the button and the drop-down would show the list of values from the source range.
Now, you can select a value from the drop-down list.
If the user wants to type a different value in cell B1, the data validation would give an error by default saying it is an invalid value.
Looking for something else?
Read our complete tutorial index of Calc, Writer, Impress and Draw.

I want to use a dynamic list in the pick list that changes as data is added to the list but I need to eliminate duplicates in the list. ow do I dynamically remove the entries in the drop down list. Is there a formula that will achieve this?
Make an vb script that removes the old value an insert the new values in the cell each time.
Want to be able to specify a default value in the cell that is validated (eg if different VAT rates are available 0% 6% 12% 25% – the 25% as default value)
In LO 6.1.5, if I used ALT-DownArrow in a constrained cell to show the drop-down list, I could then use the arrow keys to navigate to the desired value and press ENTER to select it. I’ve just upgraded to 6.3.5 and now as soon as I use an arrow key to change the current value it is auto-selected. Do you know if this was an intended change in behaviour, or a bug? If intended, is there a way of reverting to the previous behaviour, as the new behaviour is really annoying.
I just checked it 6.3.5. Must be a bug. Which OS you are using?
I’m using Windows 10, and yes, it is a bug… I found https://bugs.documentfoundation.org/show_bug.cgi?id=130325 after posting the above. I couldn’t find an obviously-available pre-built 6.3.6, but I found 6.4.2 and that fixed the problem.
Hi Arindam,
Useful howto, Thanks!
Is there an option/possibility to make this multiple choice selection?
I have defined a column with all possible values which can be used but I’d like to be able to choose one, none or many of those being in the range. Is there any switch allowing for that?
Or different way to achieve that?
TIA
No. When you are creating a dropdown, by design it gives users a choice to choose only one value. That’s how drop-down works everywhere. If you want to allow users to choose multiple values then your design must change. You might rethink your data organization in the sheet. You might want to provide multiple cells with the same drop-down values to give users the option to choose multiple values.