Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dear Community,
With the count-command i Count reports.
This value changes in the selection of building blocks. Does anyone know a command to Keep this value constant?
regards
Use set analysis
If you want to ignore all selections
Count({1} Report)
If you want to ignore specific fields
Count({<[Building Blocks]>} Report)
Read about set analysis here:
That's right. It works, if I use this command with one field.
My example:
Count({1} [QV Report])
But I like working with set analysis like this:
Count(DISTINCT{1} {$<KPI = {'100_01', '100_02'}>}WERTMENGE)
Why doesn't work the additional function {1} with this set analysis? Do you have a solution?
Try this:
Count(DISTINCT {1<KPI = {'100_01', '100_02'}>}WERTMENGE)
It works, very simple.
Thanks