Two if statements and text in one cell

jonathan92591

Board Regular
Joined
Oct 27, 2011
Messages
65
Hello everyone,

Two if statements and text in one cell

--

Excel or Access version: Excel 2010

Computer operating system: Windows XP

Sample data:

Excel Workbook
AB
14Total of all segments* * * * * * * * * * * * * * * * * * * *279,332
15Total of unique contacts* * * * * * * * * * * * * * * * * * * *456,174
16Difference* * * * * * * * * * * * * * * * * * * (176,842)
17Are we off?Yes, Under
18Check digit totals* * * * * * * * * * * * * * * * * * * *410,000
19Does check digit match?0
Kathy's Segments




Formula(s) right now: =IF((B14-B18)=0,"Yes","No")&", "&IF(B19>0,"Over","Under")

Current result(s): 0

My goal: To show the difference between B18 and B14 as a "Yes/No, Over/Under" statement

Error message: No error message

How error occurred: No error message

Generated in: Excel

Thank you.

JT :)
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
It's a circular reference.

The formula is entered in B19, it therefor cannot also refer to B19..

I think you want this in B19

=IF(B18-B14=0,"Yes","No")&", "&IF(B18-B14>0,"Over","Under")
 
Upvote 0

Forum statistics

Threads
1,223,248
Messages
6,171,027
Members
452,374
Latest member
keccles

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top