Is there a formula that I could use if it says EXCL (meaning exclude)
to have it enter that amount in another cell as a minus?
Here's one way, assuming
- the "amount" is in A1, and
- EXCL may or may not be in A2.
Put this in "another cell"
=IF(A2="EXCL", -ABS(N(A1)),"XXX"))
Replace "XXX" by what should be in "another cell" in case A2 does not say
EXCL (the original post didn't specify).
I interpreted "as a minus" to mean "a negative number whatever the sign of
A1."
If A1 contains text instead of a number, the formula returns zero; that's
what the N() does.
Modify to suit.