Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
fabuloes
Contributor
Contributor

Bread crump trail

Hi all,

Is it possible to create an bread crumb trail in Qlikview?

To see where i am in the navigation?

Thnx Loes

3 Replies
MarcoWedel

Hi,

maybe like this?

QlikCommunity_Thread_243919_Pic1.JPG

hope this helps

regards

Marco

fabuloes
Contributor
Contributor
Author

Yes exact like that. But it has to make the path automaticly. 

marcus_sommer

You could use an expression like this:

= DocumentTitle() & ' > ' & GetActiveSheetId()

If you don't want to use your sheet-names as sheet-id you will need to wrap the GetActiveSheetId() with a pick(match()) mapping like:

pick(match(GetActiveSheetId, 'SH01', 'SH02', ...), 'Sheet1', Sheet2', ....)

- Marcus