Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
chinnuchinni
Creator III
Creator III

How to apply the if condition

Hi all,

I have adatestrt and adateend,

if( adatestart='1900-01-01 ' or  adateend= '1900-10-10', 'no entry',min(date))

is this condition correct in straight table to display one date.

its very urgent.

thanks in advance

3 Replies
Anil_Babu_Samineni

Condition was okay to me. Are you getting any different?

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
dineshm030
Creator III
Creator III

It is a correct condition only.

sunny_talwar

May be this

If(adatestart = MakeDate(1900, 1, 1) or adateend = MakeDate(1900, 10, 10), 'no entry', Min(date))