INTERACT FORUM

Please login or register.

Login with username, password and session length
Advanced search  
Pages: [1]   Go Down

Author Topic: Expression help  (Read 952 times)

llafriel

  • World Citizen
  • ***
  • Posts: 230
Expression help
« on: November 28, 2008, 03:16:29 am »

Hi,

This function:
Code: [Select]
If(IsEqual(Mid([Video Type],0,8), TV Serie),[Episode]. [Name],[Name] ([Year]))
If true returns:
Code: [Select]
[Episode]. [Name])Notice the paranthesis, if false the paranthesis is left out.
If i remove the last paranthesis from the function then true returns:
Code: [Select]
[Episode]. [Name]But false returns:
Code: [Select]
[Name] ([Year]Missing the last paranthesis.

Does anyone see what I'm doing wrong here?
Logged

marko

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 8952
Re: Expression help
« Reply #1 on: November 28, 2008, 03:46:50 am »

If you want to treat the parenthesis literally, as part of the output string, as opposed to being a part of the actual expression, you must 'escape' them using a forward slash immediately before.... shown in bold below:


If(IsEqual(Mid([Video Type],0,8), TV Serie),[Episode]. [Name],[Name] /([Year]/))


-marko.

llafriel

  • World Citizen
  • ***
  • Posts: 230
Re: Expression help
« Reply #2 on: November 28, 2008, 06:56:06 am »

Worked. thanks!
Logged
Pages: [1]   Go Up