Link to home
Start Free TrialLog in
Avatar of Frank Freese
Frank FreeseFlag for United States of America

asked on

Conditional formatting problem

Folks,
In the attahced workbook I was working on duplicating a conditional formatting problem in using the WEEKNUM and MOD functions to shade every other Tuesday and it is not working.
everysecondtuesday.xlsm
ASKER CERTIFIED SOLUTION
Avatar of NBVC
NBVC
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Frank Freese

ASKER

Your solution is nothing like what was presented, but it got the job done!
Thank you so much
I suppose you are right, you could also simplify to:

=AND(WEEKDAY($A2)=3,MOD($C2,2)=1)

where column C contains the weeknumber.
I'll try that also.
The solution given was =AND(WEEKNUM($A3)=4,MOD($C3,2)<>0
The second solution you offered worked also.
Thanks