Skip to main content

New to Qlik Sense

If you’re new to Qlik Sense, start with this Discussion Board and get up-to-speed quickly.

Announcements
Skip the ticket, Chat with Qlik Support instead for instant assistance.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

if between and condition equivalent for dates

hi everyone,

I'm trying to add an expression for new column contains ok or null according to condition

here is my condition

if (tarih between '31.07.2016' and '31.08.2016', 'ok', 'null') but it didn't work.

*tarih refers column name contains dates

how can I make it

thanks

1 Reply
m_woolf
Master II
Master II

if(tarih>=date('31.07.2016' ) and tarih <=date('31.08.2016'),'ok','null')