January 5, 200422 yr I'm trying to create an FMP-If..... FMP-Else.... statement to do the following; If the field 'Abstract' is empty (contains no text), to return the value 'Not available'. If the field 'Abstract' isn't empty (contains text), to return the value 'View' as a hyperlink to another page. The same applies to a second field, called URL. Is this possible?
January 5, 200422 yr Try creating a boolean caculation, cIsEmpty, that tests for the empty field. [FMP-IF cIsEmpty.eq.1] Not available [FMP-ELSE] View [/FMP-IF]
January 5, 200422 yr From CDML reference database: [FMP-If: ClientUserName .neq.] Everyone who has entered a user name will see this message. [/FMP-If]
January 5, 200422 yr OR [FMP-If: Abstract .eq.] Not Available [FMP-Else] <a href="[FMP-Field:Abstract]">View</a> [/FMP-If] All the best. Garry
Create an account or sign in to comment