I know this is a dumb question but I have two tables linked together by timesheetItemID. One table has all of the hours a person worked and the other table has all of the comments associated with the hours.
My problem is I want to show all of the hours even if those hours do not have a comment attached.
I tried using this formula but it only shows hours with a comment
if {VP_TOTALS.TIMESHEETID} <> {VP_COMMENTS.TIMESHEETID} then "No Comment"
else {VP_COMMENTS.TIMESHEETID}
Any help would be appreciated