The formula in the default StudioX Project_Notebook.xlsx file on the Text sheet for Contains? does not work as intended.
StudioX Version: 2020.4.1 - Enterprise License
Excel Version: 2010 (Build 13328.20356 Click-to-Run)
Steps to reproduce:
- Open StudioX
- Create a new Task
- Open the Project_Notebook.xlsx file
- Go to the Text sheet
- Enter some text in the Text (input) cell (B4)
- Enter some text that is contained in the input text into the Search cell (B10)
- Notice that the value for Contains? remains FALSE
This is the default formula that does not work:
=IF(IFERROR(FIND(B10,@ Text), FALSE), TRUE, FALSE)
This formula works and it references the cells by name instead of by cell address, which will keep it working if/when things change:
=IF(IFERROR(FIND(Search,Text_Input), FALSE), TRUE, FALSE)