I cannot figure out a good way to allow multiple entries on the excel dropdowns I create in R using the opexlsx package.
dataValidation(wb, "Sheet 1", col = 6, rows = 1:(length(experiment_name$ExperimentName)), type = "list", value = "'Defect List_ImageLinks'!$D:$D")
Also thinking maybe I should try to use VBA. As in call the VBA code from R, which would allow multiple entries. The issue is, this would be after the entries are deleted by the above code.
Hoping to find a solution without losing data....