Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have file like below, and I would to count number keys between 201601 and 201603 based on the Account _Open_Date using If condition.
What was the logic behind for 201601 and 201603 ??
Hello!
Try this: count({<Account_Open_Date={"$(= '>=' & '201601' & '<=' & '201603')"}>} key)
Using Set Analysis:
Usign If is almost the same (but I'm not sure if it works)
Key can repeat?
If you want distinct count
Count(DISTINCT {<Account_Open_Date = {'>=201601<=201603'}>} Key)
If you want count
Count({<Account_Open_Date = {'>=201601<=201603'}>} Key)