How to simplify tabular UI to more informative and simple UI
I have a screen on dashboard which gives the information of duplicate values identified basis the 5 values of the parent application in 7 categories.
For Example, If a parent application's (i.e ID-1
) 5 values matched with 2 different applications (i.e ID-2
and ID-3
) with 34 fields in different categories.
Currently, the UI looks like as mentioned below. For the sake of simplicity I have added only 4 rows here, but it there would be 34 rows as 34 fields matched.
The problem with current UI is that it's not more user-friendly and don't give the user upfront information. The user has to keep on scrolling till the end and keeping information back of the mind.
Also, The Match id status
filed is redundant for all the rows and same the information of xyz or abc from the Matched with
field.
How can I enhance the UI experience by giving the user a view which is group by ID
and more upfront information like count based on different category and Filter options to play around.
Category Field Value Matched with Match id status
------------------------------------------------------------------------
A-1 A 100000 ID-2 Failed
XYZ Level-1
category1-field2 Jan-18
------------------------------------------------------------------------
A-2 B 15000 ID-2 Failed
XYZ Level-1
category2-field1 Jan-18
------------------------------------------------------------------------
A-3 C 150000 ID-3 Passed
ABC Level-4
category3-field1 Mar-18
------------------------------------------------------------------------
A-4 C 200000 ID-3 Passed
ABC Level-4
category3-field1 Mar-18
------------------------------------------------------------------------