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: 
madhubabum
Creator
Creator

How to add Cell Value to Qlikview table

Hi all

How to add  cell A5 (Client Site) from given excel to the QV table which is marked as yellow shade,Here the  loaded QV table should have Client Site  with the value specified in cell A5. PFA


Best Regards

Madhu


11 Replies
PrashantSangle

Hi,

Yes you can. Do it while Transformation Table.

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
PradeepReddy
Specialist II
Specialist II

Try something like this...

Test:

LOAD @1 as Temp_ClientSite

FROM

community.xlsx

(ooxml, explicit labels, table is Sheet1, filters(

Remove(Row, Pos(Top, 1)),

Remove(Row, Pos(Top, 1)),

Remove(Row, Pos(Top, 1)),

Remove(Row, Pos(Top, 1))

));

Final_Table:

LOAD [Output Count],

     PC,

     [Opportunity Type],

     [Opportunity ID],

     Role,

     PEEK('Temp_ClientSite',0,'Test') as Client_Site

FROM

community.xlsx

(ooxml, embedded labels, table is Sheet1, filters(

Remove(Row, RowCnd(CellValue, 3, StrCnd(null)))

));