I have a spreadsheet that I have opened in business objects so I can use the data alongside data from a universe.
The spreadsheet has a ‘description’ field that is now an object called in business objects. This contains long text strings.
From that object I need to find all rows that contain within their text string ‘BEL/LUX’. This does not always appear in the same place in the string so SUBSTR does not work.
In Excel I would use a formula like
ISNUMBER(FIND(“BEL/LUX”,C1))
which would return the value ‘True’ for any row where the string contained the letters specified.
Hi,
I guess I tried this and it worked
Make a variable and put this code in it( you can customize the code as you want)
=If( Match("<1st Proposer Full Name>|" ,"%Allen%")) Then 1 Else 0
then drag this variable in the report and then you can filter the values you want.
Hope this helps.
Cheers!!!
Hi
Use the following formula to check the position of ‘BEL/LUX’
=Pos( ,“BEL/LUX”)
It returns the position number of ‘BEL/LUX’. If its not present then it will display 0 values. Then hide where its 0 using Format -> Filters
and define = <> 0.