Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
sucharitha
Contributor
Contributor

How can we export two different files from list box one selected items another file is not selected ?

I am working on exporting different files from list box one is for selected, values and another one is for not selected values

I could  get export values from selected values using  function like this(=GetSelectedCount(feildname))

Conditionally exporting file from selected values

variable vselect=GetSelectedCount(feildname)

sub export

If (ActiveDocument.Variables("V").GetContent.string) >0 Then

Path = "filename"

set obj = ActiveDocument.GetSheetObject("LB01")

obj.ExportBiff Pat

end sub

Also tried same way to export not selected values  using function  =GetnotSelectedCount(feildname)

but not getting it .

Thanks,

0 Replies