Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a table box where i can have multiple ID's. The multiple ID's are recording where the ID priority has changed. How do i get my table box to show all entries where the ID has had its priority changed? See example for one ID that has had its Job priority changed.
Thanks
Switch from table box to straight table. Then you can use an expression that shows IDs where count({1}JOB_PRIORITY)>1
Hi,
Thanks for your help. Ok, i have switched now to a straight table and added the three fields SK_JOBKEY, JOB_PRIORITY and SK_PRIORITY.
Then under the expressions tab added the expression count({1}JOB_PRIORITY)>1
This added an additional field to the table all with -1 value and all SK_JOBKEY entries still showing.
Any ideas where ive gone wrong
Thanks
Maybe
aggr(count({1}JOB_PRIORITY),SK_JOBKEY)>1
Thanks,
No joy....tried this and it returns exactly the same -1 values just changes the field to aggr(count({1}JOB_PRIORITY),SK_JOBKEY)>1
Can you attach a sample qvw or some sample data?
I also couldn't make the expression work, so I added a counter field in load script:
maybe you can try with:
Count(Distinct Total <SK_JOBKEY> JOB_PRIORITY) > 1
hope this helps
regards
Marco
Thanks for this that has now retrieved the data i would expect. Also out out curiosity why on the SK_JOBKEY_CNT field does it always show -1 and how could you hide this field just to leave the remaining 3 fields?
Many Thanks
Hi Marco,
This has also worked and returned data i was expecting. Again out out curiosity why on the SK_JOBKEY_CNT field does it always show -1 and how could you hide this field just to leave the remaining 3 fields?
Many Thanks