PDF Report table

Hi,

I have created a slice, based on some condition and the view type is table. now i want to show this table in my PDF report. Any one can suggested me a solution for this.

0 6 521
6 REPLIES 6

Is this work in slice.

Yes, with any list (tables, slices, enumlist, list, etc)

Hi,

I have created a slice under my Source Table โ€œDaily tripโ€ based on the below filter condition and named the slice as โ€œInvoice Dataโ€

AND(
[Date] >=
ANY(
SELECT(
PI[From],
TRUE
)
),

[Date] <=
ANY(
	SELECT(
		PI[To],
		TRUE
	)
),

[Customer] = 
ANY(
	SELECT(
		PI[Customer],
		TRUE
	)
)

)

based on the slice (Invoice Data) I have created UX and the view type is the table and named as โ€œInvoice Tableโ€

Now I want to show this table in my pdf report. I have mentioned the below expression in the google doc template

<<Start:SELECT(Invoice Table[TAN],true)>>

<<[Date]>> <<[Bill No]>> <<[Truck]>> <<[Amount]>>

<< End >>

but this is not working in my pdf. can you please help me to resolve the issue?

Hi @Anchor_Appadmin
I believe you need to select your slice Invoice Data not the view.

Thank you!!! working perfectly

Top Labels in this Space