Return Blank with an IF Formula

jakew38197

New Member
Joined
Aug 1, 2023
Messages
2
Office Version
  1. 2016
Hello sorry if this has been posted before but struggling with this as I am not 100% Tech Savvy.

I am trying to work out the formula to add to the below where I want the cell to remain blank if nothing is in the requested formula cell but every time I do this is it either enters the word 'False' or a 'No'.

This is my fomula that works as it should if the number in BQ is between those Ranges it returns as Yes and if outside it returns as No:

=IF(AND(BQ6>=1.3,BQ6<=1.8),"Yes","No")

Just need the correct formula to add to this to ignore the formula and leave the cell Blank if nothing is entered into cell BQ but still need it to return as No if there is a number inputted that is outside these ranges.

Thanks in Advance.
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
Welcome to the MrExcel board!

Try this
Excel Formula:
=IF(BQ6="","",IF(AND(BQ6>=1.3,BQ6<=1.8),"Yes","No"))
 
Upvote 0
You are welcome. Thanks for the follow-up. :)
 
Upvote 0

Forum statistics

Threads
1,215,084
Messages
6,123,021
Members
449,092
Latest member
ikke

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