Hello everyone!
I have recently encountered a problem and I can't find an appropriate solution.
I'm trying to configure import for a bank statement in txt format.
The configuration is the following:

There are DateSentSeq and there is DateReceivedSeq below (isn't present on the pic) that looks exactly the same.
They are both linked to Data Model.
In some cases only one of this fields has a value in the txt file. I mean that sometimes it looks like:
DateSent=
DateReceived=22.07.2021
And in these cases the payment lines do not appear in Imported statement (no warnings appear either).
For example, DateSent is linked to Request Execution Date in Data model. I tried to changed the formula in order to replace this value in case it is empty (if (DateSent = EMPTYDATE(), DateReceived, DateSent).
But it didn't work. Moreover, it seems that no formulas work when I'm trying to address DateSent and DateReceived, the only thing that works is a direct link to one of them.
For example, Requested Execution Date = @.SectionTypes.Documents.Data.Document.'$DateSent'.DocumentAttrTypes.DateSentSeq.Data.DateSent - this works perfectly (except for empty value).
Requested Execution Date = IF(@.SectionTypes.Documents.Data.Document.'$DateSent'.DocumentAttrTypes.DateSentSeq.Data.DateSent.......) - this doesn't work.
Could anyone please provide me with any tip? I would be very grateful!