I have the following data in a Sharepoint list.
Name Animal Species
Tom Dog Corgi
Dick Dog Corgi
Harry Dog German Shepherd
Jane Cat (BLANK)
June Cat (BLANK)
Jared Cat (BLANK)
I created a view that grouped by Animal, followed by Species. So the tree looks like
Dog
---Species: Corgi
------Tom
------Dick
---Species: German Shepherd
------Harry
Cat
---Species:
------Jane
------June
------Jared
Is it possible to modify the view such that I get to Jane, June, Jared immediately after expanding Cat without having to expand an empty Species as well? Because of restrictions I don't have Sharepoint Designer on my computer, but I do have Visual Studio if I need to create a wholly custom web part (which I'm hoping I do not have to do)
Thanks in advance guys!