Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I get 400 users data who work in multiple departments from my data source, but I need to show only 89 who belong to my department.
how can I do that, need your help.
Anax.
Hi,
You can solve this in different ways:
Table:
Load
*
From [YourSource] (qvd)
Where [Department] = 'YourValue'
;
IF( [Department] = 'YourValue',
[Department],
null()
)
Sum( {$< [Department] = {'YourValue'} >} [Measure] )
Jordy
Climber