Hi @AminWejebe,
Do you want to display 3 specific choices, or any 3 (i.e. the first 3). If any will do, you could add an if statement in your for loop like:
{% set choices = hubdb_table_column(table_id, "choices").options %}
<select id="myFilter">
<option selected="selected" value="all">Choose an option</option>
{% for item in options %}
{% if loop.index <= 3 %}
<option value="{{item}}">{{item}}</option>
{% endif %}
{% endfor %}
</select>
But I could be more helpful if you copy/paste your code, as the above is assuming you’re pulling the choices directly from the HubDB.