Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Resolved Date is not null
Syntax for the above statement in terms of set analysis?
Count({1<Resolved Date is not null >}Distinct [Counter Incident Number])
Regards,
H
hi try
Count({1<Resolved Date ={"*"}>}Distinct [Counter Incident Number])
hi try
Count({1<Resolved Date ={"*"}>}Distinct [Counter Incident Number])
Hi,
Another option:
Count({< [Resolved Date] = P([Resolved Date]) >} DISTINCT [Counter Incident Number])
Hope that helps.
Miguel
Hi Miguel,
I'm sorry to bother you, could you please explain to me the P() function.
I don't find any guide about it.
Thanks a lot
Giampiero
Giampiero,
P() is used to show Possible Values. See QV help for details:
sum( {$<Customer = P({1<Product={‘Shoe’}>} Customer)>} Sales )
returns the sales for current selection, but only those customers that ever have bought the product ‘Shoe’. The element function P( ) here returns a list of possible customers; those that are implied by the selection ‘Shoe’ in the field Product.
Regards,
Vladimir
Thank you so much Vladimir,
I really appreciate.
Regards
Giampiero
Hi Giampiero,
un can find nice manual here..
Hope this help
Andrea
Hi Miguel,
Thanks a lot.
It seems to be a very good guide.
Giampiero
Thank you all..
H