Hello, my problem is a really simple one.
I have a list of Projects (List A), where every item is a project.
I have a column for the items called "Proposals Requests". This column is set as "Enhanced Rich Text", "Multiple Lines of Text" and "NO to Append Changes". It's purpose is to register every request made to that specific project.
What i want to do is a workflow to add an input on this column, like a new paragraph on top of the text, instead of using Append Changes (this would work better for a number of reasons).
For this purpose i have created another list called "Register a Request" (List B). This list works like a Form, where the user should insert all the info about the REQUEST itself, like selecting the project.
A Workflow will then be triggered when a REQUEST is added to LIST B, would pick up all the info, build a string and save it on the selected project in LIST A, in the column "Proposals Requests".
The Workflow will first save the content from the "Proposals Requests" to a Variable. This Variable will be used to build the String, positioned last in the string. Therefore the String will be formed by "NEW INFO (from List B)" + "OLD INFO (stored in the variable)".
The string will then be updated into the same column "Proposals Requests". Therefore working sort as an APPEND CHANGES Workflow.
You can see in the image below.

My problem is that the Variable won't store the OLD INFO (Multiple Line text) from the "Proposals Requests" and i don't know why.
So when the workflow runs, the string becomes just "NEW INFO (from List B)" + "BLANK (empty variable)".
I even set a default value for the Variable just to check, but that is also erased when the NEW INFO is stored in the variable, and the outcome is again, BLANK.
The part of selecting the project and updating it I've got figured out. The NEW INFO is correctly stored in the column.
I've already tried:
- Setting a "1 minute pause" in the workflow, just after i store the old info in the variable.
- Using a temporary column on LIST B so i don't need to use a variable (the outcome is the same).