您好,
将日期修改有以下两种方式:
1.使用Format- =Format(DateAndTime.Now(),"yyyy年MM月dd日")+"至"+Format(DateAdd(DateInterval.Month, 3, DateAndTime.Now()),"yyyy年MM月dd日")
复制代码 2.使用脚本- Public Function FormatDate(ByVal value As String) As String
- If value = Nothing Then
- Return value
- Exit Function
- End If
- Dim a As System.DateTime
- Dim test As String
- a = DateTime.Parse(value)
- test = a.ToString("MMMM.dd.yyyy", New System.Globalization.CultureInfo("en-US")).ToUpper()
-
- Return test
- End Function
复制代码
您可以先尝试下,如果有问题,可以将报表模板发到论坛上,我们可以帮您调试。 |