I have this dynamically generated Google Sheet that has crops across columns and planting dates as rows. Each cell represents how many "beds" of that crop we need to plant on that date. What I'm trying to do is convert that layout into a TODO schedule layout like the following example:
Date Crop Beds
___________________________
Apr 4 Jicama 5
Apr 4 Radish 2
Apr 4 Beets 3
Aug 15 Carrot 12
Oct 1 Beets 3
Oct 1 Radish 8
I've tried a variety of things but can't seem to sort out how to take each non-zero cell and convert it into a date-crop-value pair to populate another sheet automatically. Since the crop columns and date rows are automatically generated I can't just hardcode it in. Is there a way to do this in Google Sheets? Prefer non-JavaScript solution, but if it needs to go that route that's fine.
Also, I have a really hard time trying to describe the problem so changes to question title and welcomed.