Tech Support Guy banner

Excel nested Round with OR functions

811 Views 3 Replies 2 Participants Last post by  CodeLexicon
I have a working formula, it tests if cell F4 is equal to a range of other cells.
I need it to test both E4 OR F4 and I just can't figure out how to get it to work and I'd really appreciate some advice? The formula that works for just F4 is:
=IF(ROUND(F4,2)=ROUND((G4-H4-I4+J4-SUM(K4:AG4)),2),"OK","Oops")
Status
Not open for further replies.
1 - 4 of 4 Posts
Here you go, should work (posting from phone) ...

=IF(OR(ROUND(E4,2)=ROUND((G4-H4-I4+J4-SUM(K4:AG4)),2),ROUND(F4,2)=ROUND((G4-H4-I4+J4-SUM(K4:AG4)),2)),"OK","Oops")
  • Like
Reactions: 1
CodeLexicon you rock! Thank you so much! It makes complete sense now that I see it. Thank you! :D
You're welcome. :D
1 - 4 of 4 Posts
Status
Not open for further replies.
Top