Posted 20 September 2018, 9:32 am EST
Hi C1,
I noticed an interesting problem when converting C1Report to C1FlexReport.
Attached is a sample (contains a small MDB file datasource and a C1Report and C1FlexReport file). The sample has a field which should display a string with two date values in the format “dd.MM.yyyy - dd.MM.yyyy”.
The expression is this:
Format(Datum1, "dd.MM.yyyy") + " - " + Format(Datum2, "dd.MM.yyyy")
In C1Report this works.
But C1FlexReport prints a number. I assume this is the subtraction of the two date values ;-).
It works if I use “&” for string concatenation:
Format(Datum1, "dd.MM.yyyy") & " - " & Format(Datum2, "dd.MM.yyyy")
Was this change intentional ;-)? If yes it might break old reports.
Best regards
Wolfgang