Reputation: 33
I have created an SSRS report and exported that to a CSV file. The header of that CSV file displays an odd name "Donations_Chart1_CategoryGroup_label".
I want to customize the name. If any one have an idea about that please let me know the solution.
Upvotes: 1
Views: 2217
Reputation: 5405
The name of the header is taken from the DataElementName
property, which can be set in the Properties Window, under "Data Only".
If it is not specified, the Name
property is taken, it is autogenerated unless you change it, which explains your "odd name".
So you could either change the Name
or the DataElementName
of the element.
Upvotes: 3