Implementing ISBLANK into a formula

sturnusek

Board Regular
Joined
Sep 20, 2018
Messages
51
Hello,


I am pretty new to excel and I came across a problem. I have a formula based on the date to return me a value, please see below.


=IF(C2<DATE(2018,2,29),"Not moving","Fast moving")


On some of my data, I have empty columns which I want to get identified and given a special name. I tried to do something as below, but it either gives me a Value or REF error.


IF(C2<DATE(2018,2,29),"Not moving","Fast moving"),IF(ISBLANK(C2),”Not moving”)


Any ideas how to implement it?


Thanks
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
Can you please post the entire formula? Also, are you trying to return a value based on a date range or a value if it is blank? We just need more details.
 
Upvote 0
Your formulas are not showing up.
If you have < or > signs in your formula, surround them by spaces on either side.
Those signs are mistaken for HTML code, which it tries to render, and then the formulas get cut off.
So write it like this:
Code:
=IF(C2 < 4,...
 
Upvote 0
<DATE(2018,2,29),"NOT moving?,?Fast html moving?))<>=IF(C2="","Not Moving",IF(C2 < DATE(2018,2,29),"Not moving","Fast moving"))
 
Last edited:
Upvote 0

Forum statistics

Threads
1,213,550
Messages
6,114,265
Members
448,558
Latest member
aivin

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