Hello
I Have a column that has data in the date - HH:MM format, example "00:22", how to sum all the values in that column.
One more thing the data is coming from a JsonDataSource that has null values in date column, using the (IsNull, ??, IIf) to check for null does not seem to work. for example: =IIF(Fields.actualWorkHrs Is NULL, "T", "F") always returns falls even when there are null values in the actualWorkHrs field
thanks.