Skip to main content
Announcements
NEW: Seamless Public Data Sharing with Qlik's New Anonymous Access Capability: TELL ME MORE!
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
Anonymous
Not applicable

goto sctript Editor and chhose your Excel file via table files

then you get the structure of your file

youneed to define Header size 5 lines to skip the first 5 lines and you Need to define embedded labels

in a next tab you can define a where clause "where Output Count < 13)

finish and you should have the rows in yellow

qlikmsg4u
Specialist
Specialist

Try this

LOAD [Output Count],

     PC,

     [Opportunity Type],

     [Opportunity ID],

     Role,

     F6,

     G,

     H

FROM

community.xlsx

(ooxml, embedded labels, header is 5 lines, table is Sheet1) where [Output Count] <13;

madhubabum
Creator
Creator
Author

Hi Rudolf Linder

No , I want to fill Cell A5 Value into the (F Column from F7 onwords) Field name Like "Client Site"(in Cell F6)

madhubabum
Creator
Creator
Author

HI K N

No , I want to fill Cell A5 Value into the (F Column from F7 onwords) Field name Like "Client Site"(in Cell F6)

Thanks

Madhu

teiswamsler
Partner - Creator III
Partner - Creator III

hi Madhu

look at script in qvw - this script can be use if Excel format is the same every time with the school at A4

/Teis

PrashantSangle

Hi,

Try below script,

Test:
LOAD [Output Count],
     PC,
     [Opportunity Type],
     [Opportunity ID],
     Role,
     F6
     
FROM
community.xlsx
(ooxml, embedded labels, header is 5 lines, table is Sheet1);

Join
LOAD @1 as Client_Site
FROM
community.xlsx
(ooxml, no labels, header is 4 lines, table is Sheet1, filters(
Remove(Col, Pos(Top, 8)),
Remove(Col, Pos(Top, 7)),
Remove(Col, Pos(Top, 6)),
Remove(Col, Pos(Top, 5)),
Remove(Col, Pos(Top, 4)),
Remove(Col, Pos(Top, 3)),
Remove(Col, Pos(Top, 2)),
Remove(Row, RowCnd(Interval, Pos(Top, 2), Pos(Bottom, 1), Select(1, 0)))
));

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 🙂
madhubabum
Creator
Creator
Author

HI Max Dreamer ,

it is working great

Thanks for your reply

Madhu

madhubabum
Creator
Creator
Author

Hi Max Dreamer

How can i delete the unwanted row values from 13 onwords

qlikmsg4u
Specialist
Specialist

Use where condition

where [Output Count] <13