We have introduced a campaign tool.
How can I output the various accruing appointments in a calendar-view, which are filled according to various fields?
When I work with fields in the Calendar box; then it only returned from the first field the date-information.
How must be the correctly formula-writtig, to spend all other date-field correctly out.
Thank you for your help.
Subject: formula language for output all data
In the meantime i could find the answer of my problem.
To output all data, you have to remember every date and then all put together.
_d1 := @If(Date01Value != “” & @IsTime(Date01Value) ; @Date(Date01Value) ; StartDate); _d2 := @If(Date02Value != “” & @IsTime(Date02Value) ; @Date(Date02Value) ; StartDate);
_d3 := @If(Date03Value != “” & @IsTime(Date03Value) ; @Date(Date03Value) ; StartDate);
_d1 : _d2 : _d3
Subject: formula language for output all data
In the meantime i could find the answer of my problem.
To output all data, you have to remember every date and then all put together.
_d1 := @If(Date01Value != “” & @IsTime(Date01Value) ; @Date(Date01Value) ; StartDate); _d2 := @If(Date02Value != “” & @IsTime(Date02Value) ; @Date(Date02Value) ; StartDate);
_d3 := @If(Date03Value != “” & @IsTime(Date03Value) ; @Date(Date03Value) ; StartDate);
_d1 : _d2 : _d3