Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
int score = 0;

if(isNotNull(assignee)) {
    score += 10;
}
if(isNotNull(dueDate)){
    score += 10;
}
if(isNotNull(description)) {
    score += 10;
}

if(score < 10) {
    return "Bad";
}
else if(score >= 10 and score < 20) {
    return "OK";
}
else if(score >= 20 and score < 30) {
    return "Good";
}
else {
    return "Great";
}
We've encountered an issue exporting this macro. Please try exporting this page again later.