How do I use Conditional Formatting to change pos No to a Neg No

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to create a conditional format to change a positive number to a
negative number if a specific condition exists. ie.
=if(C5="Expense"or"Reimbursement", change C7 to negative
Not sure how to finish it. Anyone.
 
Try this:

I'm assuming that C7 will always be a positive number.

=IF(OR(C5={"Expense","Reimbursement"}),-C7,C7)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top