Count({<LastName = ('Smith'), HireDate>= {‘1/1/2013’}>} Distinct SalesPersonID)
What is the error?
need braces{} around Smith, not parentheses
tried that.. does not work
are you getting an error or just not the results that you hoped for?
It is showing as Error in modifier expression
The other thing that is wrong is the syntax for >=
It needs to be something like this:
HireDate= {‘>=1/1/2013’}
also set analysis is very picky about date formats. It might be better to use numbers for the comparison.
This was helpful.
Thank You
=Count({<LastName = {'Smith'}, HireDate= {‘>=1/1/2013’}>} Distinct SalesPersonID)
Thanks Ankita,
this works...
Hi Nazira,
Kindly mark any 1 of the answer as helpful correct so as to close the discussion