In Microsoft Dynamics CRM, the Report Wizard enables users to build basic reports without development knowledge. The final reports are actually Microsoft SQL SRS reports, or .rdl files, that anyone can further manipulate using a more advanced editing tool such as Visual Studio.
To use the Report Wizard, follow these steps:
Navigate to Workplace and then Reports.
After create New Report then click the Report Wizard button to start the wizard.
Start a New Report. In the Report Properties dialog box must enter a name for the report and select the Primary Record. (The Primary Record Type will be the available system entities.) The default report filter allows to specify the filter selection of property for the primary or related record types on report to produce summaries according to user choice.
Add a Column by choosing the properties of the Record Type to see in the report.
Finish the report wizard after specify the basic display format of the report.
Column Header is the name of the Microsoft Dynamics CRM field that contains the data to display or summarize. It cannot be modified within Report Wizard. To modify column header in report user should be download the above report in Actions dropdown choose download report.
Now open the particular . rdl file in Visual Studio and modify its column header like this,
Besides Textbox Name, within value tag change existing column header to user defined one.
true=" User Defined Field Name"
After save this report as .rdl file then upload it into CRM through Existing File option.
Now run the above report and it will look like desired one.