I am exporting CSV file in Reactjs where I need to create dropdown in generated CSV file
I tried excel.js
and shell.js
as well as csvlink download
<CSVLink data={data}>Download me</CSVLink>;
it showing normal csv with key value pair
I am exporting CSV file in Reactjs where I need to create dropdown in generated CSV file
I tried excel.js
and shell.js
as well as csvlink download
<CSVLink data={data}>Download me</CSVLink>;
it showing normal csv with key value pair
CSV file doesn't allow to use anything like dropdown. If you want a dropdown you need to use spreadsheet format.
Spreadsheets allows to have data validation:
Here is code sample from Python: How to add a dropdown list to google sheet using Google Sheets API python