Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
pgalvezt
Specialist
Specialist

Sum Null

Hi, I don't know if QlikView can do this. But What I want is take all values to the first row in INP. Should be just all together

Inp                 -

9662927957    -

-                    -

-                    -

-                    -

-                    -

-                    -

-                    -

Total

9662927957   -

So after that I can delete nulls.

Thanks

12 Replies
whiteline
Master II
Master II

So you cann't attach the whole file, please paste dimension formulas that you use now.

pgalvezt
Specialist
Specialist
Author

For Tramos

 

=

if(Comercio='Inp', 'Tramo 0', Tramos)

For Comercio

 

=

if(isnull(Comercio), 'Inp', Comercio)

whiteline
Master II
Master II

For Tramos you shoud use:

=if(Comercio='Inp' or isnull(Comercio), 'Tramo 0', Tramos)

Because all null Comercio also replaced with 'Inp'.