This writes to the first sheet but all other sheets are blank.
for date in dates:
sheet = wb.add_worksheet(date)
sheet.write(row, 0, 'example')
For each date I want to creat a sheet with the name equal to the date and then write to each sheet. The sheets are created with the correct names but there is nothing in them except for the first sheet.