Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all!
I need get only the date when day is friday somebody know how do it?
Thanks.
Regards
May be do something like this:
If(WeekDay(DateField) = 'Fri', 1, 0) as FridayFlag,
May be do something like this:
If(WeekDay(DateField) = 'Fri', 1, 0) as FridayFlag,
Thanks, Sunny.
use it as below
if(WeekDay(Date) ='Fri',Date)
No problem, glad to help