Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
=sum({$ < [Claim Desc] = ,[Claim Nature] = >}INSP_EVENT_CNT) is use to find out the total and it works
I want to add a column to count where the insp_type_desc is material
Any suggestion? I am not familiar with using analysis, thank you!
may be this
sum({$ < [Claim Desc] = ,[Claim Nature] =,INSP_TYPE_DESC={'Material'} >}INSP_EVENT_CNT)
may be this
sum({$ < [Claim Desc] = ,[Claim Nature] =,INSP_TYPE_DESC={'Material'} >}INSP_EVENT_CNT)
Hi,
close {} and "" in your set analysis
sum({$ < [Claim Desc] = ,[Claim Nature] =,INSP_TYPE_DESC={"Material"} >}INSP_EVENT_CNT)
Regards
use INSP_TYPE_DESK = {'Material'} inside expresion
I appreciate it, thank you so much!!!