Extending CF on WORKDAY function

ExcelRoy

Well-known Member
Joined
Oct 2, 2006
Messages
2,540
Office Version
  1. 365
Platform
  1. Windows
Hi all,

I am trying to extend the Conditional Formatting from I13 to J14 but the following formula only effects I13

=WORKDAY(I13,3)<=TODAY()

Applies to is set up as I13:J13

Any help appreciated
 

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.
I am trying to extend the Conditional Formatting from I13 to J14
Applies to is set up as I13:J13
So, what do you want it extended out to? J13 or J14?
Should the CF formulas for cells J13 (and possibly J14) look at the value in column I or column J?
 
Upvote 0
oh typo, sorry

I need the CF to effect I13 and J13

I have the formula in CF looking at the date in I13

Thanks
 
Upvote 0
Whenever applying the CF formula to a multi-cell range, you write the formula as it pertains to the very first cell in that multi-cell range, but you need to make sure that you use absolute/relative referencing in the appropriate places.
Since, as you move from column I to column J, you don't want the column in the formula to shift along with that, you need to lock the column reference down by placing an absolute reference sign ($) in front of the column reference in the formula, i.e.
Code:
[COLOR=#333333]=WORKDAY([/COLOR][COLOR=#ff0000][B]$[/B][/COLOR][COLOR=#333333]I13,3)<=TODAY()[/COLOR]
See this link for details on Absolute/Relative referencing: http://www.cpearson.com/excel/relative.aspx
 
Last edited:
Upvote 0
That's great Joe4, many thanks

I have the following formula that seems to be the same but already has this method applied

=AND(LEN($I13),TODAY()+2=$I13)
 
Upvote 0
Is your value in I13 a valid date with no time component?

If so, please provide an example of a value that is not working properly.
Let us know what value the cell is in, and what the exact value in column I of that row is.
 
Upvote 0
Sorry my error, all works

many thanks for your help
 
Upvote 0

Forum statistics

Threads
1,215,699
Messages
6,126,273
Members
449,308
Latest member
VerifiedBleachersAttendee

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