Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
aguirre
Creator
Creator

Log the dynamic title of a Sheet

Hello,

I have a dynamic title of a sheet (based on a variable).

I would like to log that dynamic name?

So that I know when a user enter a sheet with that dynamic name (from the SessijnMonitor app for example).

Is it possible?

Labels (1)
2 Replies
Chanty4u
MVP
MVP

Create variable 

LET vDynamicTitle = 'Sheet Title: ' & YourDynamicLogicHere;

Try this 

LogTable:

LOAD

    Now() AS AccessTime,

    '$(vDynamicTitle)' AS SheetTitle,

    OSUser() AS UserID

AUTOGENERATE 1;

aguirre
Creator
Creator
Author

Thank you but I meant something different.

 

I wanted to know if it is possible to log (in the server log

if a user has seen a sheet with a certain title name given by a variable.

 

If that were possible  I could  see that in apps like Session Monitor that a user has opened a sheet

with a certain dynamic name