Forum Discussion
John1944
Mar 12, 2024Copper Contributor
excell
If I have downloaded bank statements for a 12 month period how do I transfer all negative amounts into a separate column?
PeterBartholomew1
Mar 14, 2024Silver Contributor
A 365 formula that amused me. Basically it creates a copy of the amounts with reversed signs and then selected the positive values.
= LET(
signed, {1,-1}*amounts,
IF(signed>0, signed, "")
)
The idea would work without 365
= IF({1,-1}*amounts>0, {1,-1}*amounts, "")
but I like seeing the LET function