I am trying to create a calculation field called orderstatus.
I have tried using the if statement. I want the order status result to be “Incomplete” if the “CompletionDate” field is null. I am sure I am having a syntax problem or there may be an issue with the date field.
Here is the calculation method I tried, the result being text:
if (datecompleted = ^)
{
return “Incomplete”;
}
Please tell me what I am doing wrong, I am use to the old case statement in FM, trying to adjust to java.