The Zurich release has arrived! Interested in new features and functionalities? Click here for more

In reports, how to change the column name?

SK36
Tera Contributor

Hi Team,

 

I have a survey report in which there is one column named  "string value". I want to rename it as "Survey comments". The report is created with the help of database view. 2

Can anyone please help me in this?

5 REPLIES 5

Shivani M S
Kilo Guru

jaheerhattiwale
Mega Sage
Mega Sage

@SK36 You cannot change the field label on the report.

 

Please mark as correct answer if this answers your question.

Please mark the answer as correct or helpful based on impact
ServiceNow Community Rising Star, Class of 2023

Basheer
Mega Sage

Create a new label for that field and add your database-view-table-name. It will rename the field.

Go through below links for the same.

 

https://docs.servicenow.com/en-US/bundle/sandiego-platform-administration/page/administer/reference-...

 

https://www.servicenow.com/community/now-platform-forum/can-t-relabel-a-column-in-a-database-view/m-...

Please hit like button if my suggestion has helped you in any way.
Please mark correct if my response has solved your query.

Cheers,
Mohammed Basheer Ahmed.

Jeffrey Siegel
Mega Sage

You can use a function field to have a different name, and show the value, id do something like 

glidefunction:concat(<<field_name>>,'');
 
which basically takes your field and concatinates it with nothing, to show just your fields value.