PDF automation

welcome everybody
I'm having a problem automating the export of a PDF file
I think the script in the starting box has a problem

777.PNG111.PNG222.PNG333.PNG444.PNG555.PNG666.PNG

0 8 227
8 REPLIES 8

ISNOTBLANK() produces a Yes/No result, not a list of Keys.
Try removing that one.

Also, why you though you needed it in the first place? Just to get the idea

I deleted  ISNOTBLANK () And the problem still exists 

@SkrOYC 

888.PNG999.PNG

Seems like you removed the <<End>> after <<[Operation]>>

999.PNG888.PNG

There is still no problem
Thank you for your interest

@SkrOYC 

The <<End>> has to be after <<[Operation]>>, not before, and it's not a column so don't use []

Use Start expressions in templates - AppSheet Help

The problem is in the start field I think

@SkrOYC 

999.PNG888.PNG

Seems like it

You should try it once. 

ISNOTBLANK(FILTER("FILTERBRANCH", AND(

  [_THISROW].[DATE] >= [Start Date],

  [_THISROW].[DATE] <= [End Date],

  IN([_THISROW].[BRANCH], SPLIT(FILTERBRANCH[Branch], ",")),

  IN([_THISROW].[OPERATION], SPLIT(FILTERBRANCH[Operation], ","))

)))

All columns in the template will be added to the Slice column. 

<<Start: FILTER("FILTERBRANCH",

  AND(

    ([_THISROW].[DATE] >= [Start Date]),

    ([_THISROW].[DATE] <= [End Date]),

    IN([_THISROW].[BRANCH], SPLIT([FILTERBRANCH].[Branch], ",")),

    IN([_THISROW].[OPERATION], SPLIT([FILTERBRANCH].[Operation], ","))

  )

)>>

<<[ID]>>

 

<<[BRANCH]>>

<<[End]>>

Top Labels in this Space