View Single Post
  #1  
Old 07-09-2008, 09:26 AM
ashwken ashwken is offline
Registered User
 
Join Date: 10-16-2005
Location: Blairsville, GA USA
Posts: 431
Title Expressions - Case Sensitive

It would appear that Attribute Names are case-sensitive when used in Title Expressions.

This expression generates a SYNTAX ERROR:

trim(coalesce(
[Ev_Date] || ' - ' || [Ev_Type] || ' - ' || [Ev_SubType] || ' - ' || [Ev_MoreTitle],
[Ev_Date] || ' - ' || [Ev_Type] || ' - ' || [Ev_SubType],
[Ev_Date] || ' - ' || [Ev_Type] || ' - ' || [Ev_MoreTitle],
[Ev_Date] || ' - ' || [Ev_Type],
[Ev_Date],
'(Lead Event)'
))

This Attribute is actually named [EV_MoreTitle], renaming this Attribute to match the case shown in the expression corrected the error.
Reply With Quote