Reputation: 353
IIF(ASCII(A) >= 48 AND ASCII(A) <= 57, TRUE, FALSE)
Does anyone have any idea what does ASCII do here and what does the code try to accomplish? I ran into this filter condition on our informatica and I am not an ETL developer.
Any help will be greatly appreciated.
Upvotes: 0
Views: 79
Reputation: 3455
The filter will pass the records for which the field A starts with a number.
Upvotes: 0