A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.
Hello @Steve Laird
Based on my testing, I think using JSON formatting would be the simplest approach to achieve this.
SharePoint often uses a different internal name for columns behind the scenes, especially when the display name contains spaces. We need to identify the exact internal name for the formatting to work correctly.
- Go to the Settings (gear icon) in the top-right corner and select List settings.
- Scroll down to the Columns section and click the target column (for example, Risk ID or ID).
- Look at the URL in your browser's address bar and press End on your keyboard to jump to the end of the URL.
- Note the exact value immediately after Field=. For example, although the display name may be Risk ID, the internal name could be RiskID.
Next, navigate back to List settings > Risk Number and change the column type from Calculated to Single line of text.
Then apply the JSON formatting shown below. Please make sure to replace RiskID with the exact internal name you identified in the previous step. In your case, you may also want to try replacing it with [$ID] or the internal name that you see after FieldID and see whether that returns the expected result.
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",
"elmType": "div",
"txtContent": "='RA' + [$RiskID]"}
Please give this a try and let me know if you have any questions or need further assistance.
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.