Okay,
I found this in the faq. I think this is close to what I need. However, I only want to see the 2nd & 4th Monday of every month. How do I select that from this formula?
I think this is what I need.
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Crystal 8.5; ORSOS/One Call Hospital Scheduling System v9.3; SQL database; Huge Newbie to Crystal! Operating Room RN Analyst
I found this in the faq. I think this is close to what I need. However, I only want to see the 2nd & 4th Monday of every month. How do I select that from this formula?
Code:
local dateTimeVar InputDate:={Post Case.ENTER_PROC_ROOM_DATE};
local numbervar A;
local numbervar B;
local datevar C;
local numbervar D;
A := Weekday(InputDate);
B := Year(InputDate + ((8 - A) Mod 7) - 3);
C := cdate(B, 1, 1);
D := (Weekday(C) + 1) Mod 7;
(InputDate - C - 3 + D) \ 7 + 1
I think this is what I need.
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Crystal 8.5; ORSOS/One Call Hospital Scheduling System v9.3; SQL database; Huge Newbie to Crystal! Operating Room RN Analyst