Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I have a field called [Case No], it has more duplicate Case numbers, i have selected that field in my dimension to bring a pivot table, its showing all duplicate ids, How will i filter out duplicate ids and show only rest in my dimension. ?
Regards
Ranjit
Hi Ranjit,
Maybe this can help you.
Edit your dimension like this:
num(distinct [Case No])
Regards,
Henco
No dint work...
Ranji, not able to understand, I guessing out. Only(Distinct FieldName) . Check this helps you out or psot the sample data and explain us bit more.
- Sridhar
Hi this is my pivot table, [Case No] is my dimension here, you can see some ids are duplicates,
like 6855, 6852,
i dont want to show duplicates,
| = [Case No] | Case Name | Review | Rework | QC | Grand Total | |
| Training | Training | 32 | 0 | 0 | 32 | |
| 6854 | Prithvi Information Solutions Ltd | 8 | 0 | 0.5 | 8.5 | |
| 6855 | Serenity Inn | 8 | 0 | 0 | 8 | |
| 6855 | Serenity inn | 0 | 0 | 1 | 1 | |
| 6852 | Multiverse | 0 | 0 | 1 | 1 | |
| 6852 |
| 6 | 0 | 0 | 6 | |
| 6852 |
| 8 | 0 | 0 | 8 |
i want a table like below..
please look at the review and grand total it joins all the values too..
| = [Case No] | Case Name | Review | Rework | QC | Grand Total |
| Training | Training | 32 | 0 | 0 | 32 |
| 6854 | Prithvi Information Solutions Ltd | 8 | 0 | 0.5 | 8.5 |
| 6855 | Serenity Inn | 8 | 0 | 1 | 9 |
| 6855 | Serenity inn | 0 | 0 | 1 | 1 |
| 6852 | Multiverse | 14 | 0 | 1 | 15 |
That's how I would expect it to show up. Is Review by any chance a dimension?
Could you upload a small example? That would give you a quick response from someone
EDIT: it looks like Review is a dimension and not a expression, is that right?
Maybe this can help you.
Use in the expression the aggr function.
For example: num(aggr(distinct Review, [Case No]))
As Johannes said, it would be helpfull if you can share a small example with us.
Regards,
Henco
HI i have attached my qvw file... in the report tab is my table... i want to show the unique Case no as my dimension, i dont mind if you suggest me any different ways...
Thanks