
= LET(
    transactions, FilterTransactionλ(import),
    transactAmt,  MAP(transactions, ExtractAmountλ),
    amounts,      DisplyasColumnsλ(transactAmt),
    HSTACK(DATEVALUE(LEFT(transactions, 7)), amounts)
  )@AlanSidman
Try this. I transferred some of the data as a picture.
I have attempted solutions both by PowerQuery and Lambda functions.
I wouldn't say either is an object of beauty.
View attachment 85476
Code:= LET( transactions, FilterTransactionλ(import), transactAmt, MAP(transactions, ExtractAmountλ), amounts, DisplyasColumnsλ(transactAmt), HSTACK(DATEVALUE(LEFT(transactions, 7)), amounts) )
