Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
Anonymous
Not applicable

The number of comments to the report on the Report Server

Hello!

One of the published reports had the following error when adding a new comment:
"You cannot add new comments. The number of comments has reached its maximum (100)."

Tell me, is it possible to increase the number of comments to the report in the settings? How can I do that?

1 REPLY 1
Medina
Resolver I
Resolver I

Hi sleep_sonya,

There is no setup to change the limit of 100 comments per a report, as far as I know. The comments are stored in the table Comments and there is a stored procedure- [dbo].[GetCommentsCountByItemID]- Reporting Services execute to check for the number of comments stored in the table.

 

You can alter the code inside it to return a value less than 100, see below

Current

SELECT COUNT(*) FROM [Comments] as C WHERE C.[ItemID] = @ItemID

After change
SELECT 1 FROM [Comments] as C WHERE C.[ItemID] = @ItemID

 

That should do the trick.

Spoiler
I DO NOT RECOMMEND PLAYING WITH THE SSRS/PBI RS STORED PROCEDURES

I will recommend putting in place a policy on how many comments are allowed and how they will be deleted/archived and educating your users. 

 

Thank you!

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.