Skip to main content

I've a dashboard where i've 2 filters namely ID and unit. I wanted to get pdf report of my tableau dashbaord for each unit.

I've written the below script but its not giving the desired output.Its giving all the reports. instead i want pdf report for each units. So if unit=A then generate that pdf then go for unit=B and so on

Below are 2 tabcmd i'm running which is actually working for one filter ID but not for both ID and unit.

 

tabcmd get "views/ValidReport/Incident.csv" -f "C:\users\Valid_incident.csv" --no-certcheck

 

FOR /F "tokens=1" %i IN (C:\users\Valid_incident.csv) DO tabcmd get "/views/Test/TestReport?ID=%i&Unit=A" -f "C:\users\pdf\%i.pdf" --no-certcheck

 

Any suggestion please?

2 answers
  1. Mar 22, 2021, 5:18 AM

    I've tableau server but we cannot share our link to anyone. thats why i'm using tabcmd to auto generate pdf report of tableau dashboard. But the real problem is filters. My filter has almost 25 fields and i've to generate pdf of all these 25.

0/9000