Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I would like to filter a table column to only display data that starts with 'UK-Class'.
Using this formula, but I am missing the rest of the data string.
Could anyone help?
Formula:
If([EightD.Title]= 'UK - Class', [EightD.Title])
This an example:
UK - Class- 345
UK - Class- 720
Nottingham incentro
Northern Line
(only want values that start with UK - Class)
Thanks a million.
Jose
You could use WildMatch( [EightD.Title],'UK-Class*' )