G
|
giles 5/31/2009 |
Try: |
![]() |
lewisgr author 6/4/2009 |
This worked as I explained but I should have said that I need the company to show up if there isn't first & last names. Try: concat( FirstName, ' ', LastName, ' (', if(CompanyName is null, ' ', CompanyName), ')' ) This should result in: John Doe (Acme Pty Ltd) if there is a CompanyName John Doe ( ) if that field is null |
|
hfg 6/4/2009 |
Try a case statement |