The following function will find the next Thursday after today. This function will always find the next Thursday after today (no matter what today is: Monday, Wednesday etc)
=DateAdd("d",12 -WeekDay(Date()),Date())
If you are wanting a date that is 7 days from now, you could enter:
=DateAdd("d",7,Date())
HTH
SteveA