Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I really need help with converting if statement on excel to Qlikview! The formula depicts the logic that if the date falls within 1st to 19th then it should be counted as of the same month, and if the date starts after the 20th then it should be counted as of the next month. Can someone give me pointers on how to achieve this on Qlikview?
formula on excel:
=IF(AND(DAY(C11)>=1,DAY(C11)<20),DATE(YEAR(C11),MONTH(C11),1),DATE(YEAR(C11),MONTH(C11)+1,1))
formula on qlikeview, not working.
=IF(AND(DAY([Opp Est Eng Start Date])>=1,DAY([Opp Est Eng Start Date])<20),DATE(YEAR([Opp Est Eng Start Date]),MONTH([Opp Est Eng Start Date]),1),DATE(YEAR([Opp Est Eng Start Date]),MONTH([Opp Est Eng Start Date])+1,1))
Many thanks!
Try this ?
= =IF(DAY([Opp Est Eng Start Date])>=1 AND DAY([Opp Est Eng Start Date])<20, Month([Opp Est Eng Start Date]),MONTH([Opp Est Eng Start Date])+1)
Try this ?
= =IF(DAY([Opp Est Eng Start Date])>=1 AND DAY([Opp Est Eng Start Date])<20, Month([Opp Est Eng Start Date]),MONTH([Opp Est Eng Start Date])+1)
I don't think you need test for >1, just < 20. Next months date is AddMonths(). So:
IF(DAY([Opp Est Eng Start Date])<20
, MonthStart([Opp Est Eng Start Date])
,MonthStart(AddMonths([Opp Est Eng Start Date],1))
)
-Rob
This is correct. Thank you!