I am trying to identify if the amount entered is in correct format and also if it is Blank or not. In order to achieve that I am importing the amount in both text and numbered line item.
- Below are the different results we get when we import the amount in different formats in text and numbered line
| AMT_Text | AMT_Number |
| 12,3/45 | 12345 |
| 12,345.46 | 12345.46 |
| 64,36 | 6436 |
| A | 0 |
| 12A | 12 |
| 0.1A | 0.1 |
| //1//\ | 1 |
| AS123 | 123 |
| //0.987 | 0.987 |
| Ab//76 | 76 |
| ;'/1 | 1 |
| we342 | 342 |
| 12//32 | 1232 |
| 12345 | 12345 |
| 12//// | 12 |
| 12//13 | 1213 |
| //12.234 | 12.234 |
| 0.98 | 0.98 |
| .//98 | 0.98 |
| ,87,89 | 8789 |
| 123.234 | 123.234 |
| 0.7764 | 0.7764 |
| 12,23,4.45 | 12234.45 |
| 1,34,235.66 | 134235.7 |
| 12..13 | 0 |
| 12>>13 | 1213 |
| | 0 |
Can someone please share some idea on how to identify the invalid entries from the valid ones?