Transformation/Map Files - "Anything else"

Hi there,

if i have a mapping/transformation file, i use the following syntax:

originalValue1=newValue1
originalValue2=newValue2

undefinded=unknown
-=unknown

here is my question:

Is there an option for “anything else”? Undefined seems only to be the undefined state, but not a undefined “mapping”.

Thanks a lot!
Stefan

The workaround I am using is to check on Null string after the mapping in a rule.
something like

birthday = transform(“MAP”, “Geburtstage.map”,searchday)
if (birthday = “”) then birthday = “nothing found”

if you just want to check if the string is empty you can use the mapping file itself with the line:

=nothing found

but i think the “anything else” path can only be solved within a rule, so thanks anyway.

edit:
i think i got your post wrong, you check the mapping file within the rule - that’s something i should try - thanks