Hi,
I'm currently builing a flow where a user can fill in a MS form. This form will result in a planner task on our kanban board, and will send out a confirmation email. I thought I tested everything, but on the real first use, the user entered more characters in the MS forms than that are allowed in the planner task (255 char).
Now I'm looking into a simpel solution that the creation is not failing. Sadly it is not possible to restrict the total characters used in the MS forms. So it seems I need to find a solution in the flow.
I found some information on the forum which uses substring, to trim the entered information. I compose the information to check the length with a "condition", which result in a "yes/No" flow.
From this point I want to create the task. Is there a way to fill the titel based on the "Condition"? So if Yes (bigger than 255), fill it with trimmed string. If no, fill it with the original entry? I figure this needs to happen with an "if-statement", but I can't figure out which one.
If there is an easier way to fill the title with a trimmed string I'm also interested :). I would like to keep te flow simpel, so my colleagues can also understand it.