=IF(ISBLANK Formula returning error

pawcoyote

Board Regular
Joined
Mar 5, 2012
Messages
89
Office Version
  1. 365
Platform
  1. Windows
Howdy,

I am working with the following formula in my spreadsheet.

=IF(ISBLANK(F3),"Never Reported",IF(OR(MONTH(TODAY())<MONTH(F3),YEAR(TODAY())<YEAR(F3)),"Not Reporting","Reporting"))

F3 has a formula in that cell as well which reports either a date or blank.

When a date is in the cell the formula works but when there is a blank the formula returns #VALUE !

I would like to know how I can get the Never Reported to show if the cell is Blank.

Thank you for any help!
 
Post your formula as Phil said, click on the # and paste it between the
Code:
 boxes.

Then explain what you are trying to do.
 
Upvote 0

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
The # doesn't help. It keeps breaking the Code at (TODAY()) It will not post the rest of the code. Bummer...
 
Upvote 0
strange! as a last resort, you can try posting a sample spreadsheet on drop box or similar, then post the link here.
 
Upvote 0
Check if below formula helps

=IF(OR(F3="",F3<TODAY()),"Not Reported",If(<today()),"not reported",if(<today()),"not="" reported",if...<="" html=""></today()),"not>
 
Last edited:
Upvote 0
When you post with the hashtag button it should generate two blocks one should show as
Code:
 and the other as [ / code ]  (without the spaces).

If you post your formula between those two "blocks" it should post just fine.  

You didn't type hashtag or #, correct?  I should have been more clear to hit that button in the reply section.

Phil
 
Upvote 0
This is from your 1st post, add the rest of the formula

=IF(f3="","Never Reported",IF(OR(MONTH(TODAY()) < month(f3),year(today())<month(f3),year(today())[ code]<="" html=""></month(f3),year(today())[>
 
Last edited:
Upvote 0
When you post with the hashtag button it should generate two blocks one should show as
Code:
 and the other as [ / code ]  (without the spaces).

If you post your formula between those two "blocks" it should post just fine.  

You didn't type hashtag or #, correct?  I should have been more clear to hit that button in the reply section.

Phil[/QUOTE]

I have the same issue if i paste the last formula between the [code] boxes, like

[CODE]=IF(f3="","Never Reported",IF(OR(MONTH(TODAY())<month(f3),year(today())
<month(f3),year(today())[ code]<="" html=""></month(f3),year(today())[>
 
Last edited:
Upvote 0
I am not sure why I am not able to paste the formula here

Code:
=IF(OR(D7="",D7<TODAY()),"Not Reported",If(
<today()),"not reported",1)<today()),"not="" reported",if(<="" html=""></today()),"not>
 
Last edited:
Upvote 0
Code:
= IF ( F3 ""," NEVER REPORTED", IF ( OR ( MONTH ( TODAY ()) < MONTH (F3), YEAR ( TODAY ()) < YEAR (F3)), "NOT REPORTING" , " REPORTING" ))

I had to put spaces between almost everything to get it to post...<month(f3),year(today())<year(f3)),"not reporting","reporting"))[="" code]<="" html=""></month(f3),year(today())<year(f3)),"not>
 
Upvote 0

Forum statistics

Threads
1,214,954
Messages
6,122,462
Members
449,085
Latest member
ExcelError

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