How to represent multiple parameters using simple UI

I have 6 categories out of which 5 categories have 3 parameters and 1 category has 1 parameters.

I am showing those categories against unique ids, as mentioned below.

Suppose there is one unique id TII-123, it will show on UI like this:

category        parameters         value         unique id 
C1              P1                 X1            TII-123
C1              P2                 X2            TII-123
C1              P3                 X3            TII-123
C2              P1                 X1            TII-123
C2              P2                 X2            TII-123
C3              P3                 X3            TII-123
C4              P1                 X1            TII-123
C5              P1                 X1            TII-123
C5              P2                 X2            TII-123 

Whihc seems a little complicated on UI for the user to use the information, how can i represent the same information in better way on UI group by unique id.

Note: The Unique ids can be more than one, in that case the exiting UI looks like mess.