YES, che organization ID its depending on logged user i need to show all data to all user , but with different automatic aggregation level . case study: 2 organization: ORG1 and ORG2 ORG1 User, have to see data aggregate in this way: ORG2 , No Customer details, Revenue 10000 ORG1, Customer 1, Revenue 1000 ORG1, Customer 2, Revenue 500 ... ORG2 User, have to see data aggregate in this way: ORG2, Customer 3, Revenue 8000 ORG2, Customer 4, Revenue 2000 ORG1, No Customer details, Revenue 1500 and in my mind a will use a calculated item defined in this way; if _pORG = Organization then return CustomerID else return "No Customer details" in this way the "revenue" aggregation or "revenue" details its automaticaly my memory contains details ORG1, Customer 1, Revenue 1000 ORG1, Customer 2, Revenue 500 ORG2, Customer 3, Revenue 8000 ORG2, Customer 4, Revenue 2000 all is good, but tu set _pORG i need that user push a bottom or anything else.... no good!
... View more