Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Selecting a column heading based on a formula value.

Status
Not open for further replies.

thepp26

Programmer
May 29, 2001
2
US
I am working with a table of employee schedules that list Mon, Tue, Wed .... as column headings to a bollean field. Therefore, if they work on Monday then Mon = true.. I am trying to select their schedule row by converting a date to (Weekdayname, abbrev.)..

I am confused with the Crystal syntax..

(ScheudleTable.(Day of Week)) = True

Anyone ever run into this..
 
DayofWeek({Datefield}) will return the day name - Monday, Tuesday etc.

I think you need to test if the various date fields are null like this:

Not (IsNull({SchedTable}))

This should return true or false Software Support for Sage Mas90, Macola, Crystal Reports, Goldmine and MS Office
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top