Forum Discussion
- DavidHaweQrew TraineeThis is assuming Column One is a Text field.
If(
[Column1]="Yes",[Column2]
) - ColinMaddenQrew TraineeThanks for your help. I got the following error: The expression [Linedown] on the left hand side of the operator "=" is of type bool while the expression "Yes" on the right hand side is of type text. The operator "=" cannot be used with these types of expressions.
- ColinMaddenQrew TraineeOne of my system admins created the column for me. I'm not quite sure how she did it.
- DavidHaweQrew TraineeChange "Yes" to TRUE
Without Quotes. "Yes" is text and TRUE is Bool
If(
[Column1]=TRUE,[Column2]
)