Select Case ([Purpose])
Case Is = "CONS"
MyText = ((Format([Town], ">")) & " Openland" & " " & [Blurps] & " " & (Format([DateClosed], "(mmmm yyyy)")))
Case Is = "FOR"
MyText = ((Format([Town], ">")) & " Forestland" & " " & [Blurps] & " " & (Format([DateClosed], "(mmmm yyyy)")))
Case Is = "HIST"
MyText = ((Format([Town], ">")) & " Historical Significance" & " " & [Blurps] & " " & (Format([DateClosed], "(mmmm yyyy)")))
Case Is = "NAT"
MyText = ((Format([Town], ">")) & " Natural Resources" & " " & [Blurps] & " " & (Format([DateClosed], "(mmmm yyyy)")))
Case Is = "REC"
MyText = ((Format([Town], ">")) & " Recreation Area" & " " & [Blurps] & " " & (Format([DateClosed], "(mmmm yyyy)")))
Case Is = "WATER"
MyText = ((Format([Town], ">")) & " Water Resources" & " " & [Blurps] & " " & (Format([DateClosed], "(mmmm yyyy)")))
Case Is = "FARM"
MyText = ((Format([Town], ">")) & " " & [FarmType] & " Farm" & " " & [Blurps] & " " & (Format([DateClosed], "(mmmm yyyy)")))
Case Else
MyText = [Purpose]
End Select
End Sub
Where do I get to put this me.Town.FontBold=True and
me.Purpose.FontItalic=True
Thanks.
Stephania