Trying to count in workflow report template with start expression

Hi

I am trying to count in workflow template with Start and end

<<Start: orderby(Select(Jobs répété dernier mois[IDFERMETURE],contains([Nom du technicien],”FusionCom”),TRUE),[Nom du technicien])>>

<<[Nom du technicien]>>

<<count(Select(Jobs répété dernier mois[IDFERMETURE],and(contains([Nom du technicien],”FusionCom”),[_THISROW].[Nom du technicien]=[Nom du technicien])))>>

<>

it returne error : Error in expression ‘[_thisrow].[Nom du technicien]’ : Unable to find column ‘_thisrow’.",

0 3 487
3 REPLIES 3

LeventK
Participant V

@Simon_Langelier_Cont
It should be like this:

COUNT(
	SELECT(Jobs répété dernier mois[IDFERMETURE],
		AND(
			CONTAINS([Nom du technicien],"FusionCom"),
			[Nom du technicien]=[_THISROW].[Nom du technicien]
		)
	)
)

Thanks but it give me the same error

It’s probably besause I am in report for Entire Table

@Simon_Langelier_Cont
Correct. You can use [_THISROW] deref only with row level actions.

Top Labels in this Space