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

how to fill blank value in qlikview..

Dear All

load * inline

[

qty

1

-

5

-

-

-

10

-

-

-

15

-

];

fill blank value with above value

means it will show as

load * inline

[

qty

1

1

5

5

5

5

10

10

10

10

15

15

];

1 Reply
tresesco
MVP
MVP

try:

If(Isnull(qty) or qty='-', peek('NewQty'),qty) as NewQty

PFA