I would like to use the Business Calculation feature when creating a report and create a column that determines if a particular column contains a string that I specify.
Is this feasible?
Example)
■database: book
id name
1 book A
2 book B
3 book AB
■Business Calculation
・field label: contain A
・formula:
case(
When: book like ‘A’, then: ’true’,
else: ‘false’
)
Is there an update for LIKE “%xxxxx%”. I have many requests to use our website URL to count page_views metric for ‘blogs’ or ‘magazine’ mentioned in the URL. So I would like to see 2 lines one for blog , one for magazine. Is there a way to use the function LIKE or CONTAINS maybe?