Hello All,
I’m trying to solve a larger problem with this smaller problem. Here’s my formula:
The problem is this: When there is a record with a SolvedDate1 date populated and a ClosedDate1 that is Null the formula returns a null value. Why?!?!?
Any and all help with this would be greatly appreciated!!!
- t
I’m trying to solve a larger problem with this smaller problem. Here’s my formula:
Code:
Local DateTimeVar SolvedDate1 := DateTime({PROBLEMS.SOLVED_DATE},{PROBLEMS.SOLVED_TIME});
Local DateTimeVar ClosedDate1 := DateTime({PROBLEMS.CLOSE_DATE},{PROBLEMS.CLOSE_TIME});
WhilePrintingRecords;
If SolvedDate1 = DateTime(0,0,0,0,0,0) Then
ClosedDate1
Else
SolvedDate1
The problem is this: When there is a record with a SolvedDate1 date populated and a ClosedDate1 that is Null the formula returns a null value. Why?!?!?
Any and all help with this would be greatly appreciated!!!
- t