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 use inline table?

i have a table

Name  Marks

A          44

B          35

C           97

D          38

I want to written 54 instead of 44.how i can change it through inline table? 

4 Replies
ali_hijazi
Partner - Master II
Partner - Master II

temp:

noconcatenate

load * resident yourTAble

where Name <> 'A';

drop yourTable;

concatenate (temp)

load 'A' as Name, 54 as Marks

autogenerate 1;

I can walk on water when it freezes
rido1421
Creator III
Creator III

Hi Nitish

you could try the below

[MAPPING]:

MAPPING LOAD * inline [

Old ,New

44, 54

Map [Marks] using MAPPING;

Regards,

Ridhaa

rido1421
Creator III
Creator III

Hi Nitish

you could try the below

[MAPPING]:

MAPPING LOAD * inline [

Old ,New

44, 54];

Map [Marks] using MAPPING;

its_anandrjs
Champion III
Champion III

Try to load your table like

Ex:-

Source:

LOAD * INLINE [

    Name, Marks

    A, 44

    B, 35

    C, 97

    D, 38

];

Inline_Tab:

LOAD * Inline

[

Name, Marks

A,54

];

FinalTable:

NoConcatenate

LOAD

Name,

MaxString(Marks) as Marks

Resident Source

Group By Name;

DROP Table Source;