![]() |
Pete K 9/27/2021 |
Not sure if this is the issue, but I have had problems in the past with using the "+" operator to conatenate fields. Try adding ".ToString()" to each, as in data["WeekStartDate"].ToString() + " - " + data["WeekEndDate"].ToString(). |
M
|
MikeM author 9/28/2021 |
Thanks for the reply, Pete. I do use the .ToString() function when printing out the content. The problem does not seem to be the concatenation. value = data["WeekStartDate"].ToString() + " - " + data["WeekEndDate"].ToString() // This is the custom display for data["WeekStartDate"] results in 09/27/2021 - Using just value = data["WeekEndDate"].ToString() // This is the custom display for data["WeekStartDate"] results in blank cells. |
![]() |
Pete K 9/28/2021 |
Sorry, I can't think of anything else. I have used this syntax in the custom area many times myself and can verify that it should work. This probably calls for a support request. |