Unknown-
The difference between Ricky's response (Post #1) and mine (Post #2) is that Ricky provided a response tailored specifically to the writer's stated situation (Week starts on Wednesday, ends on Tuesday).
Post #2 was a generic response, where the user could specify the starting weekday. While Post #2 looks much more complex, strip it of the comments, explanations, etc., and it boils down to one line of code--very similar to Ricky's.
Ricky, I know, will set me straight if I've messed this up, but it appears that UnKnown picked up on only the first line of the code. Believe it should read:
=Format(Date()-Weekday(Date(),4)+1,"mmmm dd"", ""yyyy") & " - " &
Format(Date()-Weekday(Date(),4)+7,"mmmm dd"", ""yyyy")
or, in Unknown's situation:
=Format(Date()-Weekday(Date(),6)+1,"mmmm dd"", ""yyyy") & " - " & Format(Date()-Weekday(Date(),6)+7,"mmmm dd"", ""yyyy")
Give that a try.
Bob