Hi @David Levick ,
Welcome to Q&A forum!
It looks like you've already taken steps, but with no luck. I suggest you try the following to see if it helps:
Here are a few suggestions to help you solve this problem:
- Ensure the Field is Multi-Line Text in Microsoft Lists:
- Double-check that the field in Microsoft Lists is set as a multi-line text field and not a single-line text field. Sometimes it might look like it’s set correctly but may need a reconfiguration.
- Go to your list settings, find the column in question, and ensure it’s set to "Multiple lines of text". And if your multi-line text field is set to rich text, try changing it to plain text. Rich text fields can sometimes cause issues with character limits.
- Update Your Power Automate Flow:
- Remove the existing connection to the column in your flow.
- Re-add the connection to ensure that it recognizes the field as multi-line text.
- Check the dynamic content in your flow to see if the field is showing as text or multi-line text.
- Truncate Input String (as a temporary workaround):
- If the multi-line text field still doesn't recognize the extended length, you might consider truncating the input string to 255 characters temporarily and then addressing the underlying issue.
- You can use an expression in Power Automate to set a substring for the field in question. - Use the expression:
substring(triggerBody()?['Your_Field_Name'],0,255)
- Use REST API:
- For your reference:
- https://learn.microsoft.com/en-us/answers/questions/1027408/the-api-operation-postitem-requires-the-property-i
Hope this can help!
Good day!
If the answer is helpful, please click "Accept as Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.