Proposal for Improving the Assign Activity

Hello,
I am a user of UiPath Studio 2025.0.197 STS Community Edition.

When I click the Fix button in the expression editor of the Assign activity,
I would like UiPath to automatically rewrite the expression into a structured format like the one below.

dt_input.AsEnumerable. _
    Where(Function(row) _
              row("読み").ToString = "ひたちおおたし" OrElse _
              CInt(row("人口")) < 7500 _
          ). _
    CopyToDataTable()

Hi @gorby

I think this would be a useful improvement. The Fix option is helpful, but automatically formatting long LINQ expressions into a readable multi-line structure would make them much easier to understand and maintain.

Especially for complex Where, Function, OrElse, etc., having proper indentation would improve readability and reduce the need to manually format the expression.

+1 for this suggestion!