Upcoming Dates in Excel -
i have workbook 2 worksheets, 1 master list , other summary.
on master list sheet, columns o, q, , s contain ticket numbers. columns p, r, , t contain ticket date.
how use formula or function allow me following:
on summary tab, pull ticket numbers , dates date falls within current week?
use below formula current week dates. , try using vlookup or index (match (), match ()) function respective tickets.
sunday of current week:
=1-weekday(today())+today()
monday of current week:
=2-weekday(today())+today()
tuesday of current week:
=3-weekday(today())+today()
wednesday of current week:
=4-weekday(today())+today()
thursday of current week:
=5-weekday(today())+today()
friday of current week:
=6-weekday(today())+today()
saturday of current week:
=7-weekday(today())+today()
sunday of following week, when monday & not sunday used day #1 of week:
=8-weekday(today())+today()
Comments
Post a Comment