Skip to main content
Announcements
Introducing a new Enhanced File Management feature in Qlik Cloud! GET THE DETAILS!
cancel
Showing results for 
Search instead for 
Did you mean: 
danielrr890
Contributor
Contributor

Including add to expresion whit if

Hello greetings
I need to add including  "Dia = Aggr (Nodistinct Max (Dia), Mes)" in the expression

=Sum(
{<Comparacion = {'APLICA'},
ESTADO_CARTERA = {'ACTIVO'},
AparicionStatus = {'0'},
FONDEADOR ={' LIBRAVAL ','LIBRAVAL'}
>} BASE_PROVISION)


Thanks!
1 Solution

Accepted Solutions
sunny_talwar

May be this

=Sum(
{<Comparacion = {'APLICA'},
ESTADO_CARTERA = {'ACTIVO'},
AparicionStatus = {'0'},
FONDEADOR ={' LIBRAVAL ','LIBRAVAL'},
Dia = {"=
Dia = Aggr (Nodistinct Max (Dia), Mes)"}
>} BASE_PROVISION)

View solution in original post

2 Replies
sunny_talwar

May be this

=Sum(
{<Comparacion = {'APLICA'},
ESTADO_CARTERA = {'ACTIVO'},
AparicionStatus = {'0'},
FONDEADOR ={' LIBRAVAL ','LIBRAVAL'},
Dia = {"=
Dia = Aggr (Nodistinct Max (Dia), Mes)"}
>} BASE_PROVISION)
danielrr890
Contributor
Contributor
Author

Thanks... Perfect!