Would really appreciate some help in writing a formula to calculate the Date of the 'next' or the 'previous' nominated day of the week (e.g. Tuesday as day 4), where the start of the week is a Saturday.
I have tried the following =IF(MOD(A1-1,7)>2,A1+2-MOD(A1-1,7)+7,A1+2-MOD(A1-1,7))
And also =date + 7 – WEEKDAY(date + 7 –dow)
But a) I can't find a way to get these to use Weekday(A1,16) - i.e. a Week running Sat-Sun b) if Today (in A1) is a Monday, it seems to calculate the 'next' Monday as Today's date, however this is the day on which it needs to find the Next Monday.
I really have tried hard to find a solution online, so I would really appreciate help in my struggles here!

After more trial and error, I've figured the following does work
=date + 8 – WEEKDAY(date + 8 –dow)
Phew... thanks if you've read this.