Question : Sharepoint formula : find text in column

Hello,

I'm trying to create a calculated column in a sharepiont list looking for a text value in another column.

Ex : if "Good" is found in column [Test] then display Ok, else display not Ok.

This look simple, so I've tried the text formula given on the Microsoft site, there :

http://office.microsoft.com/en-us/windows-sharepoint-services-help/examples-of-common-formulas-HA001160947.aspx

But none of these formula works. If I try a very simple formula like "[Column1]+[Column2]" it works, but not with text.

Does anyone has a solution please ? Thanks,

Answer : Sharepoint formula : find text in column

I think you may need to use different separators.
Try this:
=IF([TEST]="Good";"OK";"Not OK")
Or
=IF([TEST]='Good';'OK';'Not OK')
Or
=IF([TEST]='Good','OK','Not OK')
Random Solutions  
 
programming4us programming4us