Is there a way to create dynamic title in Create form task

I want to create a task in action center where title and questions will be created at runtime. I want to add the Title through a variable:

Hi @amits159

UiPath does not allow changing the Form Designer panel title using variables.
To set a dynamic title, use the Title property in the Create Task activity.For dynamic questions, modify the form JSON at runtime and pass it to Create Task.

To design Dynamic title you can follow below steps

  1. Design your form normally in Form Designer and Keep the panel title fixed or empty
    2 In Studio, use Create Task
    3 Set the Title property using a variable

Hope that’s help
Thanks & Happy Automations

I tried using {{variableName}} in “Title”, but it didn’t work as expected.

@amits159

Using {{variableName}} in the Form Designer title does not work because UiPath does not support variables or expressions in forms.

The Title field is static and treated as plain text, which causes the runtime error.

To set a dynamic title, use the Title property of the Create Task activity.

Try this approach
Design the form in Form Designer and Keep the panel title static or empty and in UiPath Studio, create a variable

AddressTaskTitle = "Address Approval - " & customerName

And Assign it here
Create Task → Title = AddressTaskTitle

Let me know if you still face the issue

If possible can you give a sample xaml to show how to do it.

The Panel Title inside the form cannot be dynamically populated using {{variableName}}

It only works for form data bindings like {{data.MyField}} passed via the Inputs dictionary.

  • Design the form normally
  • In Studio, set Create Form Task → Title using a variable
  • If UI text inside the form needs dynamic content, pass values via Inputs and use {{data.<key>}} binding.

I tried this


,but title is coming as blank

The Panel Title in UiPath Form Designer does not support variables or data binding.
Using {{data.AddressTaskTitle}} results in a blank header because the value cannot be resolved at runtime.

To create a dynamic title, use the Title property of the Create Task activity.

If a dynamic heading is required inside the form, use a Label component and pass the value via Form Input data.

Plz try this
1 In forum designer please leave Panel title as empty or static and
Open the studio create the string variable
AddressTaskTitle = "Address Approval - " & customerName
And assign it here
Create Task → Title = AddressTaskTitle

Hope its help

Hi @amits159

, If you need any further help related to this feel free to ask and if this soltion works, please mark it as the Accepted Solution

Thanks