I have a view which is categorised in the following order
Column 1: Category1
Column 2: Category2
Column 3: Category3
When utilising the CreateViewNavFromCategory method I am only able to uniquely specify the first column (category1) in the view.
Set nav = vw.CreateViewNavFromCategory(“Category1”)
Set entry = nav.GetFirst
It is possible to specify a category which appears in the 2nd or 3rd or 4th columns of the view. However, a view entry will not be created.
For example
Set nav = vw.CreateViewNavFromCategory(“Category3”)
Set entry = nav.GetFirst
It is possible to specify a category as in a path for example
Set nav = vw.CreateViewNavFromCategory(“Category1\Category2\Category3”)
Set entry = nav.GetFirst
And a view entry will be created however the view entry is the same as if the view navigator was created only from Category1
Set nav = vw.CreateViewNavFromCategory(“Category1”)
Set entry = nav.GetFirst
Could you please advise how I might return the column values from a view entry from a category in the second or third column of a view using
Set nav = vw.CreateViewNavFromCategory(“Category1\Category2\Category3”)
Set entry = nav.GetFirst
Thank You.