New song every morning at 9am Quick tweaks to make it work: - publish the sheet: file > share > publish to web > publish (copy the full url and paste it into const sheetUrl = '...') - your day column (A) should be in date format like 2026-02-05 (today) for exact match, or if you prefer cycling numbers (1-70), change the match to row index: let dayIndex = (new Date().getDate() - 1) % 70 + 1; then find row where rows [0].trim() === dayIndex.toString(); - test: refresh the page. it should grab today's row (or day 1 if no match), show the image, player, title - artist. if it loads blank or errors, paste what you see (or a screenshot description) and i'll fix the line. or tell me how your day column is formatted (numbers or dates) and i'll adjust the script. paste it in, hit save, refresh. tell me what you see. we're close.