Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hay all
I need to know if there is an option
to write set analissys who calaculate a result of unselected one field
but the same selected values of other selected field's.
Example is in the Attache file
Thank
Yes, that is possible.
The correct Set Analysis should be SUM({$<[Sales Person]=>} INCOM)
The $-sign means keep the selections made by user and by defining [Sales Person]= in the Set Analysis you say that this selection should be ignored.
Hope this helps.
Hay Marc,
Thank u for the suggest.
But the $ sign show me all the sales persons,
I need the unselected [sales person] for the [sales person]
but the selected value to the Year
Hi Lavi,
the you should use this:
SUM({$<[Sales Person]=E({$})>} Sales)
This will select only the sales persons that are in de exluded list based on the selections you made.
So the first $ sign means you use all selections. Then in Set Analysis you say that you only want the Sales Persons that are Exclude (E()) and within that you say with Set Analysis for the selections you made {$}.
Marc
Thank you very Much'
It's wors.
![]()
I mean work's,
![]()
Another Quastion,
If i have a Country Field,
which syntax should i have to write if i want
to compare to the same sales person's who lived in the same country.
Thak you very much for the help.
Hi Lavi,
Try the following:
SUM({$<[Sales Person]=, [Country]=P({$})>} Sales)
![]()
Tank's