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

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

data Replacement

i have devloped dashboard which contains data for visits of site monthly basis .

while loadig data for month may i have used wron data  for category 'ABC'

so i need to correct it.

Now i am using where conditaion to remove may month data for 'ABC'.

but i  found that data for 'ABC' removed when i used below condition

LOAD

qvd where category<>'ABC' and Month<>'May';

so i have to load all month data for ABC.

is there any way to remove data for only month May for ABC.

or there is any way to replace only that rows which contains wrong data because

it is a big application and even loding data into qvd for a month is also challenge.

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Try

LOAD

qvd where not (category='ABC' and Month='May');

View solution in original post

4 Replies
swuehl
MVP
MVP

Try

LOAD

qvd where not (category='ABC' and Month='May');

Not applicable
Author

Thanks,

but is there any way to replace the values which i want to change without loading all data after removing wrong data.

is there any way to replace value into qvd for any month and category.

swuehl
MVP
MVP

I personally know of no way to directly change data in a qvd.

But, I don't see your point here really. You loaded wrong data at one point in time and stored this into a qvd.

So, why not load the correct data, append your historic data from qvd (without the wrong data, using where clause), then store the complete, correct data back in a qvd (i.e. replacing your existing qvd with the incorrect data).

You only need to do this once, so I see no reason in worrying about performance here.

Not applicable
Author

ok,

Thanks,