Early Access: The content on this website is provided for informational purposes only in connection with pre-General Availability Qlik Products.
All content is subject to change and is provided without warranty.
Skip to main content

Changing the sheet name in an app

This topic shows how to update the sheet name in a Qlik Sense app.

Example:  

var location = Location.FromUri("https://example.abc.com/");
location.AsNtlmUserViaProxy(certificateValidation: false);
var appId = location.AppWithNameOrDefault("Helpdesk Management");
using (var app = location.App(appId, noData: true, session: Session.Random))
{
    var sheets = app.GetSheets();
    var sheet = sheets.First(sheet1 => sheet1.Properties.MetaDef.Title == "Dashboard");
    var props = sheet.Properties;
    props.MetaDef.Title = "MyNewTitle";
    sheet.SetProperties(props);
}

Did this page help you?

If you find any issues with this page or its content – a typo, a missing step, or a technical error – let us know how we can improve!