Skip to main content
Announcements
See why Qlik is a Leader in the 2024 Gartner® Magic Quadrant™ for Analytics & BI Platforms. Download Now
cancel
Showing results for 
Search instead for 
Did you mean: 
vikas_nandanwar
Creator II
Creator II

Data Not Matching with the data base and App

Hi,

I am uploading two sheets of data in Qlik sense, My data is not matching with the excel.

I have attached my App and my data for the reference,

Can anybody check the error and let me know.

My Excel total is

   

Cert/ParcelSum of CtsSum of Value (USD)
Cert7436.6530190273.05
Parcel114278.4770215751.23


Thanks,

Vikas

1 Solution

Accepted Solutions
devarasu07
Master II
Master II

Hi,

Try to use concatenate method

Capture.JPG

Fact:

LOAD

    OGC,

    Source,

    "Date",

    "Buyer Name",

    "Supplier Name",

    "Lab Name",

    Cts,

    "Credit Terms",

    "Value (USD)",

   'Cert' as Type

FROM [lib://Downloads/Downloads\Procurement.xlsx]

(ooxml, embedded labels, table is Certified);

Concatenate (Fact)

LOAD

    OGC,

    Source,

    "Date",

    "Buyer Name",

    "Supplier Name",

    Size,

    Quality,

    "Credit terms",

    Rejection,

    "Yes / No",

    Cts,

    "Value (USD)",

    'Parcel' as Type

FROM [lib://Downloads/Downloads\Procurement.xlsx]

(ooxml, embedded labels, table is Parcel);

Hope this helps to you

Regards,
Deva

View solution in original post

3 Replies
devarasu07
Master II
Master II

Hi,

Try to use concatenate method

Capture.JPG

Fact:

LOAD

    OGC,

    Source,

    "Date",

    "Buyer Name",

    "Supplier Name",

    "Lab Name",

    Cts,

    "Credit Terms",

    "Value (USD)",

   'Cert' as Type

FROM [lib://Downloads/Downloads\Procurement.xlsx]

(ooxml, embedded labels, table is Certified);

Concatenate (Fact)

LOAD

    OGC,

    Source,

    "Date",

    "Buyer Name",

    "Supplier Name",

    Size,

    Quality,

    "Credit terms",

    Rejection,

    "Yes / No",

    Cts,

    "Value (USD)",

    'Parcel' as Type

FROM [lib://Downloads/Downloads\Procurement.xlsx]

(ooxml, embedded labels, table is Parcel);

Hope this helps to you

Regards,
Deva

vikas_nandanwar
Creator II
Creator II
Author

This worked.

But why is this happening?

Why did my script didn't worked?

devarasu07
Master II
Master II

Hi,

You app script also working after concatenating cert & parcel fact. refer to the attached sample.

p.s: the reason i concatenate is because of each fact has one type of value with similar column name

Hope it's clear, help to close this thread by marking as correct and helpful. Thanks