Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Error in expression: ')' expected

Im trying to load the following script:

MAP_NFONDOS:

Mapping

LOAD

     Codigo_Ppal_Corto_Key,

     Count([DISTINCT]Producto_Cod_AñoMes_Key) as N_Fondos_Cliente

Resident F_OPERACIONES_SALDO

Where Tipo_Dato = 'Saldo'

Group by Codigo_Ppal_Corto_Key;

I don´t know where is the mistake, could you please help me?

Regards

1 Solution

Accepted Solutions
sunny_talwar

May be try this:

MAP_NFONDOS:

Mapping

LOAD Codigo_Ppal_Corto_Key,

     Count(DISTINCT [Producto_Cod_AñoMes_Key]) as N_Fondos_Cliente

Resident F_OPERACIONES_SALDO

Where Tipo_Dato = 'Saldo'

Group by Codigo_Ppal_Corto_Key;

View solution in original post

1 Reply
sunny_talwar

May be try this:

MAP_NFONDOS:

Mapping

LOAD Codigo_Ppal_Corto_Key,

     Count(DISTINCT [Producto_Cod_AñoMes_Key]) as N_Fondos_Cliente

Resident F_OPERACIONES_SALDO

Where Tipo_Dato = 'Saldo'

Group by Codigo_Ppal_Corto_Key;