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

Announcements
Independent validation for trusted, AI-ready data integration. See why IDC named Qlik a Leader: Read the Excerpt!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Data testing

My source data is coming from oracle,xls,sql server for one single table.

How to test the output data of report or dashboard if it is pulling right data.

1 Reply
christian77
Partner - Specialist
Partner - Specialist

Hi.

You can place a field like Source. Filtering by Source you'll know the origin of data.

LOAD

'xls'                    as "Source",

*

from xls;

concatenate

LOAD

'sql'                    as "Source",

*

from sql;

concatenate

LOAD

'oracle'                 as "Source",

*

from oracle;