I was hoping someone could help.
I have keywords such as:
Woodworking
Furniture
Beds
Bookcases
Finishing
Mission
antiquing
I would like to create a view scheme that displays 3 panes, each of which is for keywords, but which display the levels of nesting. For example
Pane 1 Pane 2 Pane 3
Woodworking Furniture Beds
Bookcases
I know how to do a similar thing with filepaths as in ListItem([Filename (path)], 5, \) which only shows the 5th directory, and I know how to do it with filepath and count to count the directories starting from the filename (so ListItem([Filename (path)],Math(ListCount([Filename (path)],\)-1),\) which will show the last directory.
I've tried replacing filename (path) in the above expressions with keywords, but that doesn't work.
I've got ListItem([keywords],Math(ListCount([keywords],\)-1),\) for my last column, and that seems to work as it shows
Beds
Bookcases
But for the previous level of nesting, I've got ListItem([keywords],Math(ListCount([keywords],\)-2),\)
it shows Woodworking;Finishing instead of just Finishing.