I’m making a calendar based on a current table I have, where one column is JobCode and another is ProjectName. I’d like the Title of the events that appear on the calendar to be JobCode-ProjectName, but I’m having trouble getting this to work. I’ve tried coding this in the onLoad event
{JobCode} = {JobCode}.' - '.{ProjectName};
and setting the Title field of the calendar to JobCode, but that didn’t seem to work. I’ve also tried creating a brand new field and having a select statement for this, but that made the Title of the calendar events completely blank.
Any ideas on how to accomplish this?