Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I'm trying to create an 'and' function and struggling.
I've got the basic code which is:
Count({<ExceptionMonth = {$(vCurrentMonth)}> } [Exception ID])
However i want to add another clause which is "and testID ='1'."
How / where would i do tis?
Cheers
Count({<ExceptionMonth = {$(vCurrentMonth)}, testID = {'1'}> } [Exception ID])
or
Count({<ExceptionMonth = {'$(vCurrentMonth)'}, testID = {'1'}> } [Exception ID])
Count({<ExceptionMonth = {$(vCurrentMonth)}, testID = {'1'}> } [Exception ID])
or
Count({<ExceptionMonth = {'$(vCurrentMonth)'}, testID = {'1'}> } [Exception ID])
Try with
Count({<ExceptionMonth = {' $(vCurrentMonth), testID = {'1' } ' }> } [Exception ID])
Or
Count({<ExceptionMonth = {' $(vCurrentMonth) '}, testID = {'1'} }> } [Exception ID])
Regards
Anand