Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Community,
Below I have some code that attempts to find the number of open tickets:
count(
{1<[Request Date Type] = {'Created'}>*<[Request Date Type]-={'Completed'}>}
[Request Date Type]
)
For some reason I get a little squigle under the -={"Completed">}... of the code and it gives me all the values created but not subtracting those that are completed.
Try:
count(
{1<[Request Date Type] = {'Created'}>*<[Request Date Type]={"='Completed'"}>}
[Request Date Type]
)
Brandon,
Try set subtraction instead:
count({1<[Request Date Type] = {'Created'}>-<[Request Date Type]={'Completed'}>} [Request Date Type])
Vlad