I basically want to have a view that displays two columns from my table, but not have any of the columns repeat the same ID or Name
For example if table data looked like this
Name ID
John 204
John 204
John204
Mel 205
Mel 205
Mary 205
I want the View to display
Name ID
John 204
Mel 205
Mary 206
I feel as though there is a real easy solution to this but I'm not sure how to do it.
Thanks,
Connor