crystal 报告中的自定义函数添加

Custom Function addition in crystal Report

我必须将日期字符串格式化为自定义格式,就像我需要将“11/04/2016”转换为“11/D/2016”一样。只是我必须将这里的月份编号 04 替换为具有相同序列的字母表,例如 01 将被 A 替换,02 将被 B 替换,依此类推。我对为通用编程语言编写逻辑没有任何问题。但我不知道如何在 crystal 报告中添加此自定义功能。 我检查了公式字段,但似乎它们有预定义的公式,而我需要自定义公式。 有什么方法可以在 crystal 报告中添加自定义函数并向其传递一些参数,然后它 returns 你会得到你在报告中显示的数据??? 提前致谢 !

Report --> formula workshop然后去New然后去selectcustom function

语法为:

创建函数Convert

Function(StringVar value) //this will take the input string

//Here write your logic and return a value.and close the function

现在您已经创建了一个自定义函数。

要使用这个在函数中创建新公式,请转到自定义函数并双击已创建的函数

Convert("11/04/2016"); //close the window and place formula on design and refresh you get required output