Comment in Microsoft List

Iron Contributor

Hello MSFT

Today, I found that I am now able add comment in Microsoft list for one of my list. However, I am finding some issues:

1. After a comment is added, I dont see any icon on the quick view for the list item with comments. This is different from MSFT demo, there is no way for us to know which item has comment until we open one by one. 

2. the comment is not viewable in Microsoft list in Teams.

 

Pls help

 

Thanks

Ryan

8 Replies

Hello MSFT

 

I have tried many method for the issue I describe above, I now realized that I cannot apply any column formatting to the title column in order to see the comment icon. After I remove the formatting, the comment icon is shown. Can anyone please help about how I can apply formatting and still got the comment icon, even just bold the text.

 

Also, it seems the comment is not available in the list in Teams

 

Thanks

Ryan

You could create a separate "Comment Count" column and use this JSON formatting to show if their are comments or not. That would allow to still apply your other formatting to the Title column. Not a perfect solution but may help.

@Jin Chen 

 

Try using below JSON code. It will bold the title text and show comments icon if there are any comments added.

 

 

{
  "$schema": "https://developer.microsoft.com/json-schemas/sp/column-formatting.schema.json",
  "elmType": "div",
  "attributes": {
    "class": "ms-fontColor-themePrimary ms-fontSize-m"
  },
  "children": [
    {
      "elmType": "span",
      "txtContent": "@currentField",
	  "style": {
        "font-weight": "bold"
      }
    },
	{
      "elmType": "span",
      "style": {
		"font-size": "16px",
        "margin-left": "10px",
		"display": "=if([$_CommentCount] == '0' , 'none' , 'block')"
      },
      "attributes": {
        "iconName": "Comment"
      }
    }
  ]
}
 

 

 

 

Microsoft documentationUse column formatting to customize SharePoint 

Additional References:

  1. SharePoint Online: All you need to know about Commenting in Lists 
  2. How to Enable/Disable the commenting in SharePoint Online/Microsoft Lists 

Please click Mark as Best Response if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.

 

I am having exactly the same problem. Teams doesnt show the old comments entered using Microsoft Planner/Lists. And now I connected Microsoft Planner/Lists, and my comments from yesterday arent visible either.

I have just created a List in a Microsoft Teams Channel. The only way to see the comments is to either open the list in Sahrepoint or in the List App (Web).

Is there anyway to see the comments directly from the list in the Teams Channel?

@DLutchy365Assist , @aykutkaraca 

 

This is a current limitation of Microsoft lists in Microsoft teams. This will be available in future.

For now, you can follow below workaround:

 

When you want to add list as a tab in Microsoft Teams, you can add a Website tab rather than Lists tab.

 

ganeshsanap_1-1615023372184.png

When you use "Website" tab, you need to pass the list URL from browser. Then you can see the list comments in browser tab like:

ganeshsanap_2-1615023512806.png

Read more about list comments feature in below articles:

  1. All you need to know about Commenting in Lists 
  2. Working with SharePoint Online/Microsoft List Comments using JSON Formatting 
  3. How to Enable/Disable the commenting in SharePoint Online/Microsoft Lists 

Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.

@ganeshsanap I have just noticed a small error in the condition that prevents the icon from being hidden. $_CommentCount should be compared to empty string ('')

 

"=if([$_CommentCount] == '' , 'none' , 'block')"

 

 

@AndrejSramko Thanks! Yes, the comparison condition and full example is also available in my article about using List comments count in SharePoint JSON formatting at: Working with SharePoint Online/Microsoft List Comments using JSON Formatting 


Please consider giving a Like if my post helped you in any way.