Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Group,
I have a question for all of you. I need to get some statistics based on the following:
Here is my table:
Oppt_Summ:
Load
ServiceLocation as ServLoc,
ContractStart_Year as Cont_Year,
Left([Material Grp],3) as MG_Key,
[Material Grp] as MGrp,
NetSales as Net_Sales
Resident Opportunity;
Any ideas?
Thanks
Thought it was right but I was wrong. Here is some sample data.
I think I resolved the previous issue by removing the ServLoc. Any ideas on the other ones?
=
=count({<ServLoc={"=count(distinct MG_Key)>=4"}>}ServLoc) / Count(Distinct TOTAL ServLoc) (new one)
=count({<ServLoc={"=count(distinct{<ServLoc>}MG_Key)>=4"}>}ServLoc) / Count(Distinct TOTAL ServLoc) (old one)
I attached some data. Any ideas on how to get these to work?
What % of ServLoc have only MG_Key = 002 proposed?
Hi Thom, maybe adding more distinct:
count(DISTINCT {<ServLoc={"=count(Distinct {<ServLoc>}MG_Key)>=4"}>}ServLoc)/Count(DISTINCT ServLoc)
Or wich ones are failing and what's the expected result?