Shape Data, Shapesheet, Text & IF formula

Started by damswil, April 26, 2016, 03:51:50 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

damswil

I am trying to have the text of a shape (Shape 1) say "Yes" if the Shape Data (prop 1) of Shape 2 is "PRESENT". I made the text of Shape 1 a field and used the formula =IF(Shape2!prop.row_1 = "PRESENT", "YES", "NO"). The problem I am coming up with is that whatever text is typed in the data of Shape 2, Shape 1 always returns "YES" unless I throw a number in there.

Any thoughts on this?

Surrogate

try use strsame function
IF(strsame(Shape2!prop.row_1 ,"PRESENT"), "YES", "NO")

damswil

AH! Yes that worked perfectly thank you. I knew it was something ridiculous like that, just some function I was unaware existed.