Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
amita1621
Contributor III
Contributor III

i want to update the comments in qlikview .

i have a excel dashboard where a comment section exist where through vlookup they get updated like in my case 'the comment from current qtr is updated in excel.i want same replication in qlikview.

Please require help .Capture-excel.PNGCapture-update here.PNGCapture- comment.PNG

3 Replies
devarasu07
Master II
Master II

Hi,

Try to configure this extension using web service method (data saved in sql)

SQL Writeback from QlikView extension object.

also take a look on Annotation / User Commentary ( multiple user can review the report and share some comments)

https://www.youtube.com/watch?v=4KRnm23t_ds

Note: i've implemented above writeback option and it's working fine, i suggest to use summary level analysis and not for very details/transnational level insertion/ update etc (performance con)

Annotations in Qlik Sense

above url shared updated webservice code

Thanks,

Deva

Siva_Sankar
Master II
Master II

If you want load the comments from excel to qlikview, and show appropriate to the quarter then you can use set analysis in that case. Share example or sample data to help more.

-Siva

qliksus
Specialist II
Specialist II

Not sure whether I understood the requirement clearly but if you want to load only the comments in an excel which is like the below

The below script can load only the comments

Data:

LOAD ANVSAV,
if( peek(ANVSAV)='Comment', 1,0) as new

FROM
[comment load.xlsx]
(ooxml, embedded labels, table is Sheet1);

Comments:

LOAD ANVSAV,
if( peek(ANVSAV)='Comment', 1,0) as new

FROM
[comment load.xlsx]
(ooxml, embedded labels, table is Sheet1)

where new=1 ;

drop table Data ;