Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Weekday

Hi all!

I need get only the  date  when day is friday somebody know how do it?

Thanks.

Regards

Labels (1)
1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

May be do something like this:

If(WeekDay(DateField) = 'Fri', 1, 0) as FridayFlag,

View solution in original post

4 Replies
sunny_talwar
MVP
MVP

May be do something like this:

If(WeekDay(DateField) = 'Fri', 1, 0) as FridayFlag,

Anonymous
Not applicable
Author

Thanks, Sunny.

hemhund2016
Creator
Creator

use it as below

if(WeekDay(Date)  ='Fri',Date)

sunny_talwar
MVP
MVP

No problem, glad to help