Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
KHSDM
Creator III
Creator III

SAP Report Connector - Check Box

Hi all,

I'm trying to extract data from a SAP Report using the SAP Report Connector. One of the "select option" is a checkbox. In this case, what value should I put if I want it to be "checked"?

pxd1wdANM2.png

1 Solution

Accepted Solutions
Hakan_Ronningberg

Hi,

It should work with the value 'X'.

If you use radio buttons you can set space to the ones that are not selected like:

(SELNAME R1, KIND P, SIGN I, OPTION EQ, LOW X) , 

(SELNAME R2, KIND P, SIGN I, OPTION EQ, LOW ' ')

Regards,
Håkan

View solution in original post

2 Replies
Hakan_Ronningberg

Hi,

It should work with the value 'X'.

If you use radio buttons you can set space to the ones that are not selected like:

(SELNAME R1, KIND P, SIGN I, OPTION EQ, LOW X) , 

(SELNAME R2, KIND P, SIGN I, OPTION EQ, LOW ' ')

Regards,
Håkan

KHSDM
Creator III
Creator III
Author

Thanks for the info!