Hi,
i need to filter only rows starts with A
With the wildcard check i can insert A*
How can do this with regex?
^[A] doesn't work
Thanks
Hi,
i need to filter only rows starts with A
With the wildcard check i can insert A*
How can do this with regex?
^[A] doesn't work
Thanks
Use "^A.*".
thanks