help me write a formula please - maybe IF?

hawilder

New Member
Joined
Sep 1, 2010
Messages
27
Hello - I want to write a formula to do the following:

If F3 has a number in it than tell me if M3 is blank.


<colgroup><col width="72"></colgroup><tbody>
[TD="width: 72"][/TD]

</tbody>
in other words... you have to be doing the criteria we have in one column if you want to sell the product in the other column...

Any help is appreciated. Thank you.;)
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
Hey try this:

=IF(ISNUMBER(F3)=TRUE,IF(ISBLANK(M3),"M3 is blank","M3 is not blank"),"F3 does not contain a number")

EDIT: If you want a more dynamic result output instead of a static "M3 is blank" for example then use the below adapted formula:

=IF(ISNUMBER(F3)=TRUE,IF(ISBLANK(M3),SUBSTITUTE(CELL("address",M3),"$","")&" is blank",SUBSTITUTE(CELL("address",M3),"$","")&" is not blank"),SUBSTITUTE(CELL("address",F3),"$","")&" does not contain a number")
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,577
Messages
6,173,164
Members
452,504
Latest member
frankkeith2233

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