Hi,
I have below data table with columns Values. (Values column datatyppe is Vstring 255)
| Values |
| 0.11 |
| 0.23 |
| 2.34 |
| 5.44 |
| aa |
| . |
| bb |
| #$ |
| afdf.adfa |
| 5 |
| 7 |
| 8 |
| 1223.56 |
I want to add checks for double value as this column require entries only for double. If there is no about value found the in other column should update Yes or No like below
| Values | Double_Y_N |
| 0.11 | Yes |
| 0.23 | Yes |
| 2.34 | Yes |
| 5.44 | Yes |
| aa | No |
| . | No |
| bb | No |
| #$ | No |
| afdf.adfa | No |
| 5 | No |
| 7 | No |
| 8 | No |
| 1223.56 | Yes |
Thank you for your help 