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 500
3 REPLIES 3

@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