Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Community,
I need to show Navigation in Textbox...
I have one Drill Down group
Division-->Category-->Product
This Drilldown group i took in Listbox..
If i am select Division drill into Category drill into Product.
Exapmle:
These 3 dimension are in One DrillGroup
I want show this navigation in Textbox...
Europe-->Sportwear-->Basket Vest
PFA
Thanks in Advance..
Can you post a screenshot of what you want
as I'm using personal edition.
Simply use Table box with all 3 Dimensions.
try this
=Divisonname&'->'&Category&'->'&Productname
If you need to show the drill path selections only:
If(GetSelectedCount(DivisionName) = 1, DivisionName, '') & '-->' &
If(GetSelectedCount(Category) = 1, Category, '') & '-->' &
If(GetSelectedCount(ProductName) = 1, ProductName, '')
If you want to show the possible values (implied by selections on other fields):
If(GetPossibleCount(DivisionName) = 1, DivisionName, '') & '-->' &
If(GetPossibleCount(Category) = 1, Category, '') & '-->' &
If(GetPossibleCount(ProductName) = 1, ProductName, '')
If you want to show something other than an empty string when there is no distinct selected or possible values, replace the empty strings ('').
use
=GetCurrentField([Navigation])