Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Crystal Report 2008,在折线图中我想在报告中的 x 轴上显示月份名称,如 Jan Feb March。如何在 x 轴上显示月份?
最好的方法是使用以下公式创建一个单独的公式字段
cstr(monthname(month({YourDateFieldHere})))
在图表中使用它。
这只是从此处的日期中提取月份。如果您需要更改任何内容,我相信您可以通过右键单击来更改格式,或者如果它显示 01、02、03 等。您可以在公式中使用一系列 IF 语句,例如
IF {YourDateFORMULA} = "01" THEN January
依此类推,虽然这不应该是必需的,因为原始公式中的 MonthName 函数应该涵盖这一点。