Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
The forum board you are trying to access is permanently deleted.
Hi,
this code should have the following function include. Is it possible ?
count({$<Urlaub={'x'}>+<verletzt = {'x'}>+<unentschuldigt={'x'}>+<Krank = {'x'}>}TerminID)
for example: count({$<Urlaub={'x'}>+<verletzt = {'x'}>+<unentschuldigt={'x'}>+<weekday(TerminDatum) = {'Mon'}>+<Krank = {'x'}>}TerminID)
Thanks...
BR CS
Only field names on the left of a field modifier allowed, no functions.
Create an appropriate field for weekday in your script, then
count({$<Urlaub={'x'}>+<verletzt = {'x'}>+<unentschuldigt={'x'}>+<WeekDayField = {'Mon'}>+<Krank = {'x'}>}TerminID)
Only field names on the left of a field modifier allowed, no functions.
Create an appropriate field for weekday in your script, then
count({$<Urlaub={'x'}>+<verletzt = {'x'}>+<unentschuldigt={'x'}>+<WeekDayField = {'Mon'}>+<Krank = {'x'}>}TerminID)
Thanks for answering.
How can i combine OR and AND logic to the code ?
like this for example ?
count({$<WeekDayField = {'Mon'}>,<Urlaub={'x'}>+<verletzt = {'x'}>+<unentschuldigt={'x'}>++<Krank = {'x'}>}TerminID)
BR CS
Maybe like
count(
{
<WeekDayField = {'Mon'}> * (<Urlaub={'x'}>+<verletzt = {'x'}>+<unentschuldigt={'x'}>+<Krank = {'x'}>)
}
TerminID)