Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
My max Date is 03/03/2016.
I want to make the start of week as Sunday i.,e 02/28/2016
So I gave my expression as
=WeekStart(max(Date,0))
But it still returns start of week as 02/29/2016. Any help greatly appreciated.
Did you try this
=Date(WeekStart(Today())-1)
Or
=Date(WeekStart(DateField)-1)
Regards
Anand
Did you try this
=Date(WeekStart(Today())-1)
Or
=Date(WeekStart(DateField)-1)
Regards
Anand
weekstart(Date,0,-1)
The third parameter is the offset from starting on Monday.