SharePoint List Calendar View JSON formatting
I have a SharePoint list with column “person” and “categorie”. If I use column formatting with JSON, it works. I can show person + categorie in column title in list view. But if I change to calendar view, the info will not been displayed. How can i put the JSON in calendar view? I don’t want to use power automate to copy the person value to text column, because we have this calendar in many SharePoint teamsite. I don’t want to create hundert flows to do that.
columns of my SharePoint list:
– title: (text) always empty
– person: (person and group)
– categorie: (chioce)
– from: (date)
– to: (date)
JSON script:
{
“$schema”: “https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json“,
“elmType”: “div”,
“txtContent”: “=[$person.title] + ‘ ‘ + [$categorie]”
}
I have a SharePoint list with column “person” and “categorie”. If I use column formatting with JSON, it works. I can show person + categorie in column title in list view. But if I change to calendar view, the info will not been displayed. How can i put the JSON in calendar view? I don’t want to use power automate to copy the person value to text column, because we have this calendar in many SharePoint teamsite. I don’t want to create hundert flows to do that. columns of my SharePoint list:- title: (text) always empty- person: (person and group)- categorie: (chioce)- from: (date)- to: (date) JSON script:{“$schema”: “https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json”,”elmType”: “div”,”txtContent”: “=[$person.title] + ‘ ‘ + [$categorie]”} Read More