I want to make an html>pdf report, I have a pebble in my shoe which is the following:
PDF > PDF report:
in one place i put the expression <<Start: FILTER("Alm_saida", AND(IN([ID_SAIDA],[_THISROW].[Ficha]), [DATA] <= [_THISROW].[Data_final]), [DATA] >= [_THISROW].[Data_inicial], [FUNCIONรRIO] = [_THISROW].[Funcionario], [CATEGORIA] = [_THISROW].[Categoria]))>><<[DATA]>>
And it works PERFECTLY;
but...
HTML > PDF report:
in one place i put the expression <<Start: FILTER("Alm_saida", AND(IN([ID_SAIDA],[_THISROW].[Ficha]), [DATA] <= [_THISROW].[Data_final]), [DATA] >= [_THISROW].[Data_inicial], [FUNCIONรRIO] = [_THISROW].[Funcionario], [CATEGORIA] = [_THISROW].[Categoria]))>><<[DATA]>>
(which is the same as the previous one), it does not recognize the part of the expression that contains the "=" character, see below:
Before coming here, I researched a lot for a solution, and tried to rewrite the code in other ways, but without success. help?! hahahahaha
Not sure why the error says the "=" is the problem, but I think it is because you have an additional ")" in your expression. See below:
Thanks for the guidance. I already fixed the code, but the error persists
If you can share the rest of the expression, we may be able to help. I would say include the full expression from <<Start:>> to <<End>>
Thanks friend, here's the code:
Below is the complete code, ctrl+c and ctrl+v:
The below should work. I think your other problem was that the start and end needed to be prior and after the <tr> tag respectively.
<tbody>
<p><<Start: FILTER("Alm_saida", AND(IN([ID_SAIDA],[_THISROW].[Ficha]), [DATA] = [_THISROW].[Data_final], [DATA] = [_THISROW].[Data_inicial], [FUNCIONรRIO] = [_THISROW].[Funcionario], [CATEGORIA] = [_THISROW].[Categoria]))>></p>
<tr>
<td><<[DATA]>></td>
<td><<[CรDIGO_SA].[CรDIGO]>></td>
<td><<[NOME]>></td>
<td><<[CA]>></td>
<td><<[QUANTIDADE]>></td>
<td><<[MOTIVO]>></td>
<td><<[ASSINATURA]>></td>
</tr>
<p><<End>></p>
</tbody>
User | Count |
---|---|
18 | |
15 | |
10 | |
7 | |
4 |