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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to create a calendar view with multiple entries???

Status
Not open for further replies.

csiwa28

Programmer
Apr 12, 2001
177
I have a form with a field called 'Dates'. This is a 'computed when calculated' field that allows multiple values. Depending on what type of event is chosen, a predetermined number of days is added to today's date, and I must only use one date field.

So let's say for example that a user selects a certain event, field 'Dates' contains the following dates:

05/07/2001, 05/08/2001, 05/09/2001, 05/11/2001

I know how to create a calendar view and display an event that has one date, however is it possible to create a calendar view to show the name of the event on those 4 nonconsecutive days, if so, how would I go about doing this?
 
It's been awhile since I've done this, but I think something like this will work - if you convert the field to text, you can use the @explode then convert back to date, all in the view column:

@Date(@Explode(@Text(fieldname);","))

Set the column to show multiple values on separate lines.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top