HI trying to get a formuala to return every fridays date. So tomorrow is friday it would return 12/14/2018. Once friday pasts i need it to return next Fridays date -- Example would be 12/21/2018
and on thanks
and on thanks
That's the next Sunday, so =TODAY()+2-WEEKDAY(TODAY()+1)
=TODAY()-WEEKDAY(TODAY()-1)+7