I am driving myself insane trying to figure out how to get the start date inside of a report to stop having the (p) stamp at the end of it.
How it's displaying:"Digital Camera Basics," 7(p)-9p.m.Tuesdays, Sep. 8-29. Fee: $89.
How I want it to display: "Digital Camera Basics," 7-9p.m.Tuesdays, Sep. 8-29. Fee: $89.
So far I've changed the start time to "Short Time" and I've been trying to decode the mile long Iif expression, but I've been facing some difficulties.I've pasted it below in case the answer is staring me right in the face.
=Chr(34) & [CourseTitle] & "," & Chr(34) & " " & (IIf(((((Format([StartTime],"Short Time")>="12:00")) And ((Format([EndTime],"Short Time")>="12:00"))) Or (((Format([StartTime],"Short Time")<"12:00")) And ((Format([EndTime],"Short Time")<"12:00")))),IIf((Format([StartTime],"nn")>0),(Format([StartTime],"h:nn”)),(Format([StartTime],"h "))) & Chr(45) & IIf((Format([EndTime],"nn")>0),(Format([EndTime],"h:nn a/p") & ".m."),(Format([EndTime],"ha/p") & ".m.")),IIf((Format([StartTime],"nn")>0),(Format([StartTime],"h:nn ")),(Format([StartTime],"h”)) & Chr(45) & IIf((Format([EndTime],"nn")>0),(Format([EndTime],"h:nna/p") & ".m."),(Format([EndTime],"ha/p") & ".m.")))) & IIf([StartDate]=[EndDate],Format([StartDate],"dddd"", ""mmm"". ""d"),IIf([StartDate]<>[EndDate] And Format([StartDate],"mmm")=Format([EndDate],"mmm"),Format([StartDate],"dddd""s, ""mmm"". ""d") & Chr(45) & Format([EndDate],"d"),IIf([StartDate]<>[EndDate] And Format([StartDate],"mmm")<>Format([EndDate],"mmm"),Format([StartDate],"dddd""s, ""mmm"". ""d") & Chr(45) & Format([EndDate],"mmm"". ""d"),""))) & ". Fee: $" & [ClassFee] & "."
Any help is extremely welcome!