How do I change the Report Designer Ruler unit from Inches to centimetres?
Asked Answered
P

4

7

A simple (I hope) question, I'm using Visual Studio, I create a new report in SQL Server Business Intelligence Development Studio. In layout view the ruler is in inches, I would like to change it to centimetres.

Update 1

Changing the regional settings worked.

Is it not possible to do this without changing the regional settings? I would have hoped this would be a setting within Visual Studio.

Psychosomatics answered 3/3, 2009 at 1:25 Comment(0)
P
2

Change Regional Settings from English (United States) to English (Australia)

ie through Start > Control Panel > Regional and Language Settings.

Psychosomatics answered 3/3, 2009 at 2:51 Comment(0)
P
5

There's no need to change the Windows regional settings. You can do it via the report properties.

I have v15 of the ReportBuilder. You can open it as in the picture:

enter image description here

In order to display the "Report" properties, not other object ones (Body, a chart of a Textbox field).

Unselect anything in your report in order to have the report properties visible.

And attention the setting is for that report only, you will need to change it for every report you have.

Piscator answered 4/3, 2021 at 10:46 Comment(1)
This is the answer!. It also works in the SSRS Query Designer which comes with SQL Server 2016 (v 15.0.19611.0)Yusuk
O
4

Not sure how to set this in BIDS, but if you open the RDL file in a text editor, e.g. notepad, toward the the bottom of the file you should see:

  <Language>en-GB</Language>
  <rd:ReportUnitType>Cm</rd:ReportUnitType>
  <rd:ReportID>b5fa3be2-c9a8-41b7-bb70-df2e2e9e86ec</rd:ReportID>
</Report>

Change rd:ReportUnitType to

 <rd:ReportUnitType>Inch</rd:ReportUnitType>
Octroi answered 12/3, 2016 at 14:32 Comment(0)
P
2

Change Regional Settings from English (United States) to English (Australia)

ie through Start > Control Panel > Regional and Language Settings.

Psychosomatics answered 3/3, 2009 at 2:51 Comment(0)
C
1

It's possible, at least in the 9.0 edition. Bring the record properties (Report/report properties) and there you can choose the measures to be in inches or centimeters. That includes the rulers and the measures of the elements of the report if you decide to input them yourself with the properties panel.

Conni answered 27/6, 2013 at 13:42 Comment(1)
I have the v15 there is nothing like that in File->optionsPiscator

© 2022 - 2024 — McMap. All rights reserved.