SELECT has invalid inputs

Dear friends,

I have this expression in a virtual column with datatype NUMBER, and cannot find the error. Anybody who can help out? Thx.

if(
[Navigation Name] = "1 - Neu erfasste Behandlungen",
count(
SELECT( Behandlung[BehandlungsID],
AND(
ISBLANK([Unterschrift]),
ISBLANK([UnterschriftDr.]),
[BehandlungDurchgefuehrt] = false,
ISBLANK([BehandlungAbgelehnt]),
[TerminStoniert] <> true
),0
)
), 0
)

Solved Solved
0 3 167
1 ACCEPTED SOLUTION

Perhaps you are looking for this?

if(
[Navigation Name] = "1 - Neu erfasste Behandlungen",
count(
SELECT( Behandlung[BehandlungsID],
AND(
ISBLANK([Unterschrift]),
ISBLANK([UnterschriftDr.]),
[BehandlungDurchgefuehrt] = false,
ISBLANK([BehandlungAbgelehnt]),
[TerminStoniert] <> true
)
)
), 0
)

View solution in original post

3 REPLIES 3

Perhaps you are looking for this?

if(
[Navigation Name] = "1 - Neu erfasste Behandlungen",
count(
SELECT( Behandlung[BehandlungsID],
AND(
ISBLANK([Unterschrift]),
ISBLANK([UnterschriftDr.]),
[BehandlungDurchgefuehrt] = false,
ISBLANK([BehandlungAbgelehnt]),
[TerminStoniert] <> true
)
)
), 0
)

Thx friend! OK, my mistake:-)

You are welcome. No problem,  we all sometimes err.

Top Labels in this Space