English 中文(简体)
材料中动态参数的编号格式
原标题:Set Number Format for dynamic parameters in Crystal Report

我的Crystal报告的一个参数是一年。 当报告运行时,这些年出现在以千位 place为格式的一组价值中,如2 010年而不是2010年。 我怎么能够改变动态参数的数量格式?

The data type of my year parameter is Number, and I have the default number format (file/options/fields/number/number/customize/number/thousands separator) box unchecked.

这是我能改变的吗?

感谢任何帮助。

此外,报告没有显示年参数值,而是作为甄选标准,因此我不想照样。

最佳回答

“enterography

问题回答

you can add new formula field and set this formula for example:


"some string " + ToText ({@Year5},"0000" )


注:

  • ToText : string method.
  • {@Year5}: return number of year;
  • "0000": formated number




相关问题
1099r IRS form instal Report

我们需要从申请中产生1099r份IRS报告,我们已决定用晶报告编写这份报告。 很奇怪的是,任何人都这样做了,如果是,可以......

How to split a Crystal Reports subreport across a page break?

I m using Visual Studio 2005 and writing in VB.NET. I have a subreport in a Crystal Reports report consisting of a list of log entries. Sometimes the list of log entries is long enough that it would ...

Adding Crystal Reports support into LAMP product

We have a newly documented feature request, from sales and support, to integrate Crystal Reports into our LAMP product. (It s more like LAPP, really, with Postgres and PHP.) I have to admit, ...

Crystal Report value Convertion?

i have to crystal report made from Dataset,and we have to one formula field i wrote Add() but that formula field show cancatination like 10+20=1020 i realize they need to convert that field in sight ...

How to Hyperlink to a Business Objects Report in Infoview

Is there a way to craft a hyperlink that connects to a Crystal Report or Webi within Infoview? Ideally, unauthenticated users would be challenged with Infoview security and then redirected to the ...

Crystal Report XI trouble with big XML data file

I have a big xml file (65 Mo) that I need to feed to a Crystal Report XI. My problem is that I tried running the report and it takes forever to display a single page (about 15 minutes a page). I still ...

Transferring Crystal report

I have created a crystal report in VS 2005 using the wizard. In the report I have created an OLE DB connection to a server which has a database student . Now I need to run this report on another ...

热门标签