Using drill down links with PostgreSQL

Hi guys,

I’m developing a dashboard with PostgreSQL and I need to send a url parameter to drill down:

on the first dashboard i have:

image

when i click the link i got the next url

http://XXXXXXXXXXXXXd/YtGPWWIZz/new-dashboard-copy?orgId=1&nombre=SAMS

Until then everything is fine, but the second dash board dont return query data.

i use the next query;

select upper(c.name) NOMBRE
from clients c
where upper(c.name) = ‘[[nombre]]’

could you help me guiding me to get url variable and query based on this variable?

best regards

Hola Sergio,

La forma adecuada de pasar una variable por medio de la url es con el siguiente formato:
var-varname=value

So tienes que cambiar a:

...?var-nombre=$__cell

UN saludo.