Hiding blanks in MIN date formula

BrookieOU

New Member
Joined
Jun 9, 2015
Messages
5
I have tried so many things, and can't get anything to work. I have 3 columns that I want to return the MIN date - 30 days from into another column. And, then I want to set conditional formatting to highlight the row if that date is today or before. I have all of that figured out. But, if I don't have anything in the 3 columns that it is pulling from it returns ####### in the results column. And the conditional formatting is highlighting all of those columns as red. How do I have it ignore the formula if any of the criteria columns are blank?

Test Tracking Log.xls
B
8
PHYSICIAN CREDENTIAL TRACKING
Cells with Conditional Formatting
CellConditionCell FormatStop If True
A3:R1500Expression=AND($Q3<>" ",$Q3<TODAY())textYES
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
Let's assume your source column is A, try this:
=If(isblank(A1),"",A1-30)
 
Upvote 0
Is it column widths you need to change for that column.
 
Upvote 0

Forum statistics

Threads
1,213,494
Messages
6,113,974
Members
448,537
Latest member
Et_Cetera

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