I have a column called 'TXT' and I would like to search through all the data in that column to check for numbers that have . in them.
For example:
2329
23842
2482.
The output should be
Nope
Nope
2482.
I tried:
IIF(CONTAINS("." [txt]), [txt] , "NOPE") but that doesn't seem to work. Most likely the problem is with "." How can I achieve this?
Thank you!