Google Sheets – Filter and Match Cell Based on Date

formulasgoogle sheetsgoogle-sheets-datesvlookup

When you input a date in sheet 1, I want it to automatically grab data from sheet 2 and input text that matches that date back into sheet 1

Best Answer

You can try VLOOKUP it if today's date is in A column of Sheet1:

=VLOOKUP(TODAY(), 'Sheet1'!A:B, 2, 0)