want cell to be blank not FALSE

kac1125

Board Regular
Joined
Jul 31, 2014
Messages
82
Office Version
  1. 365
Platform
  1. Windows
Hello, Looking to fix this formula. I want a cell to be blank instead of false when not true. Please let me know if any ideas. Working in office D365
Thank you in advance. =IF(L4<>"",HYPERLINK("mailto:"&L4&" ?subject="&D4&" "&E4&" "&"Site"&" "&F4&"&""&B2&body="&""&"","Email Planner"))
 
Last edited:

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
Please post your formula for us to see!
Just use Copy & Paste to copy your formula here.
 
Upvote 0
You didn't include your formula. However here is a sample of what you are looking for :

VBA Code:
=IF(A1<>"", A1[CODE]

Paste the above formula into B1. Note at first that B1 is blank. Then enter a number into A1. Note that B1 mirrors A1.
Remove the number from A1 and B1 is blank again.

It is the last part of the formula that makes B1 blank when A1 is blank. It is also another way of displaying a 'False' response ... A1 is does not have
anything in it or 'False'.

At the end of your formula add the comma and the two quotation marks ...    [CODE],""
 
Upvote 0
Please post your formula for us to see!
Just use Copy & Paste to copy your formula here.
Sorry, Was in a rush and forgot to paste it =IF(L4<>"",HYPERLINK("mailto:"&L4&" ?subject="&D4&" "&E4&" "&"Site"&" "&F4&"&""&B2&body="&""&"","Email Planner"))
 
Upvote 0
As Logit explained, you are missing the FALSE argument for your IF function. If you leave it off, it will default to returning "FALSE".
It should be:
Rich (BB code):
=IF(L4<>"",HYPERLINK("mailto:"&L4&" ?subject="&D4&" "&E4&" "&"Site"&" "&F4&"&""&B2&body="&""&"","Email Planner"),"")
 
Upvote 0
As Logit explained, you are missing the FALSE argument for your IF function. If you leave it off, it will default to returning "FALSE".
It should be:
Rich (BB code):
=IF(L4<>"",HYPERLINK("mailto:"&L4&" ?subject="&D4&" "&E4&" "&"Site"&" "&F4&"&""&B2&body="&""&"","Email Planner"),"")
[/CODE
Rich (BB code):
As Logit explained, you are missing the FALSE argument for your IF function. If you leave it off, it will default to returning "FALSE".
It should be:
Rich (BB code):
=IF(L4<>"",HYPERLINK("mailto:"&L4&" ?subject="&D4&" "&E4&" "&"Site"&" "&F4&"&""&B2&body="&""&"","Email Planner"),"")
Thank you!!!
 
Upvote 0

Forum statistics

Threads
1,226,116
Messages
6,189,057
Members
453,523
Latest member
Don Quixote

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