Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Friends,
I need some help to achieve the below.
1. Count the number of ID if the Start Date is today's date.
2. Count the number of ID if the today's date is between Start Date and End Date.
I crashed my brain to achieve this. Need your help.
Give this a shot:
=Count({<[Start Date] = {"$(=Date(Today(), 'MM-DD-YYYY'))"}>}ID)
Hi,
Take a look at these Video's when you have time.
- Beginners’ Introduction to Set Analysis
Try this:
Best,
Sunny
Hi Sunny,
I tried Count({<[Start Date] = {"$(=Today())"}>}ID) and getting the count as 0. But I have 2 IDs with Start Date 28-Apr-2015.
What could be wrong...
Are you specifying a date format to your field [Start Date] in the script? Did the second expression work?
It would be easy if you can share a sample application.
Best,
Sunny
Yes
Date(ScheduledStartDate,'MM-DD-YYYY') as 'Start Date'
This how I am getting the Start Date.
The second expression also did not work.. But for both the expression I am getting 0. (Not an error or -)
Give this a shot:
=Count({<[Start Date] = {"$(=Date(Today(), 'MM-DD-YYYY'))"}>}ID)
Please refer the attached application
Count({<[Start Date] = {"=$(=Today())"}>}ID)
Thanks Sunny.. It worked perfect.