Hi @Gavin Smith,
Thank you for posting in this community.
As you can see, SharePoint Online does not support validation rules on Multiple lines of text column at this time.
But we can implement this validation using JSON formatting. You can try this method to see if it solves your problem.
1.Open column formatting.
2.Copy the following JSON code. Please use [$ColumnName] to replace your column name. And you can replace the prompt. Click Save when you are done.
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",
"elmType": "div",
"attributes": {
"class": "=if([$priorcolumn] == '', '',if([$Comments]=='','sp-field-severity--severeWarning ms-fontColor-neutralSecondary',''))"
},
"children": [
{
"elmType": "span",
"style": {
"display": "inline-block",
"padding": "0 4px"
},
"attributes": {
"iconName": "=if([$priorcolumn] == '', '',if([$Comments]=='','Warning',''))"
}
},
{
"elmType": "span",
"txtContent": "=if([$priorcolumn] == '', '',if([$Comments]=='','Required Info',@currentField))"
}
]
}
3.Here is my test result.
If the answer is helpful, please click "Accept 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.