Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I Have a expression as below in straight table.
Count(Distinct(ID)) & ' '& NUM(Count(Distinct(ID))/COUNT(TOTAL DISTINCT ID),'#,##0.00%')
Could anyone let me know how can I change the expression to get MAX ID. I used below one
Count(Distinct MAX(ID)) & ' '& NUM(Count(Distinct MAX (ID))/COUNT(TOTAL DISTINCT MAX (ID),'#,##0.00%')
But this is showing 'Error in Expression'.
Thanks.
Thanks and when I used this it is showing all values as 1-100%. Do I need to change anything other?
I used Mandeep ones earlier but the fogures are showing entirely different when I compared with database values. Any help please.
Please find enclosed file
Thanks and actually in the excel file I have MAX PID. But in the database I don't have MAX PID directly.
so, when i select ID there are more than 10 PID under each ID. That is my problem . In this case how can i select to get the exact values whihc are in database.
You can create below in script…
Load
Person,
Team,
Max(ID) as [Max PID]
Resident Data
Group By Person, Team;
and now use the file which i have given in previous reply.
Thanks I tried but still it is showing the same incorrect values. I am totally confused . Is there any other way to sort this?
Any Help please
Hey Amelia,
It is my understanding that because of the table structure you have.... its not possible to get this report the way you want. Try converting your table into a cross table It will be easy to get it working.
Hi,
Thanks. Could please give me some points of how to convert to cross table?
I tried using cross table but it is not correct. could anyone help me please.
Can anyone sort out this please?