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: 
qlikwiz123
Creator III
Creator III

Show Sheet name in the text box

QlikView has GetSheetID() or GetSheetName() using which we can show the current sheet name. I see that there is no such function in Qlik Sense. Please let me know if there is an alternative apart from writing macros or API extensions etc.

Labels (3)
2 Replies
Or
MVP
MVP

You could work around this pretty easily by using a variable to determine the sheet name and then reference that variable.

If you're just trying to check whether an object is in a specific sheet, you can use InObject() in Cloud or February 2023 or newer Enterprise. https://help.qlik.com/en-US/sense/February2023/Subsystems/Hub/Content/Sense_Hub/Scripting/SystemFunc...

 

salonicdk28
Creator II
Creator II

Hi, yeah there is no such functions in qliksense to get the sheet names, try this API to get sheet ID 

var result = qlik.navigation.getCurrentSheetId(); alert('sheet id':+result.sheetId);