You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for this great gem! I had a quick question about how to add a list data type inside a cell for example where user can only select from a, b, and c and its a dropdown list.
The text was updated successfully, but these errors were encountered:
worksheet_write_string(worksheet,
CELL("A13"),
"Select a value from a drop down list",
NULL);
char *list[] = {"open", "high", "close", NULL};
data_validation->validate = LXW_VALIDATION_TYPE_LIST;
data_validation->value_list = list;
worksheet_data_validation_cell(worksheet, CELL("B13"), data_validation);
But it doesnt seem to have that method on the Libxlsxwriter module. Would you be able to show me a workaround to add a dropdown list in a cell? Thank you.
Thank you for this great gem! I had a quick question about how to add a list data type inside a cell for example where user can only select from a, b, and c and its a dropdown list.
The text was updated successfully, but these errors were encountered: