Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Experts,
Can any one please help me to replicate the below logic into qlik
=If(OR(ISBLANK(Startdate ), ISBLANK(Enddate)),"",
IF(AND(Type="New",Status="Completed"),NETWRORKDAYS(Startdate,Enddate), "")
)
Thanks in advance.
Try like:
if(Type='New' and Status='Completed', NetWorkDays(Startdate,Enddate))
Qlik too has a networkdays().
Hi Tresesco,
Thanks for your reply.
could you please help me to replicate this whole logic into Qlik.
=If(OR(ISBLANK(Startdate ), ISBLANK(Enddate)),"",
IF(AND(Type="New",Status="Completed"),NETWRORKDAYS(Startdate,Enddate), "")
)
Thanks in advance.
may be like this in qlik
if(Type='New' and Status='Completed',
NETWORKDAYS('21/11/2017' , '27/11/2017' ))
replace date with your date field
Try like:
if(Type='New' and Status='Completed', NetWorkDays(Startdate,Enddate))