Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How to calculate number of days in a selection ?
In the following example , the number of days is 54?
If your data has a Date field associated with Year, Month & Day,
try
count(distinct Date)
This may or may not work depending on your data model.
If your data has a Date field associated with Year, Month & Day,
try
count(distinct Date)
This may or may not work depending on your data model.
if you have the all the data in field than you could use count(filedname)...
can please share the sample data so that it will be helpful for us understand the data
go in menu: Setting -> user preferences -> Tab "general" then in the box "Max Values in current selection" write a value (Ex. 50) end see what happen
Let me know
Hello
Use GetSelectedCount(Day)
GetsSelectedCount(Day) will not work as Day is the Day of the Month and only has 31 unique values, so will not give the count of days across multiple months.
Count(Day)
Can to use GetPossibleCount function
Counting the Date field gives the correct answer, you earlier expression used the Day field which does not give the correct answer.