Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a column of 'Project.name', and I want to create a filter:
If ('Project.name' LIKE '\d{8}*', 'Suspicious', 'OK)
I want to use Regex to match the pattern, however it doesn't work.
The target project names start with 8 digit number. For example, '30294892 XXXX'.
Does anyone know how to achieve this? Thanks very much in advance.
If(Len(KeepChar(Left([YourField], 8), '0123456789')) = 8, 'Suspicious', 'OK')
If(Len(KeepChar(Left([YourField], 8), '0123456789')) = 8, 'Suspicious', 'OK')