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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
bsbernabe
Creator
Creator

default date > field date

Hello There,

how to use this kind of function in QlikView

IF(06/30/2020 > FieldDate, "yes" the also

IF field A- (MONTHS BETWEEN 06/30/2020 - FieldDate) == REM, "CURRENT"
ELSE "FUL"

 

Thanks

Bing

Labels (1)
1 Solution

Accepted Solutions
rubenmarin

Hi, the question is somewhat cryptical, so the answer it's also some to get as an idea:

If(Date('06/30/2020')>FieldDate
  ,'yes'
  ,If(fieldA-((Year(FieldDate)*12+Month(FieldDate))-(2020*12+6))=REM
    ,'CURRENT'
    ,'FUL'
))

 

View solution in original post

2 Replies
rubenmarin

Hi, the question is somewhat cryptical, so the answer it's also some to get as an idea:

If(Date('06/30/2020')>FieldDate
  ,'yes'
  ,If(fieldA-((Year(FieldDate)*12+Month(FieldDate))-(2020*12+6))=REM
    ,'CURRENT'
    ,'FUL'
))

 

bsbernabe
Creator
Creator
Author

Hello There,

Thank you so much for the solution You've shared.

 

Best Regards.