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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
narender123
Specialist
Specialist

Cross table problem

Hi All,

I am using a cross table.

Like:-

TableA:

    DECLARATION_ID,

   CUSTOMS_VALUE

     ITEM_NO,

    EXPORT_DUTY_EXEMPTED,

     EXCISE_DUTY_EXEMPTED

FROM TABLEA;

Expression in report:

=Sum(CUSTOMS_VALUE) is showing right.

but when use cross table

CrossTable(TAX_CODE,TAX,3)

NEW:

LOAD DECLARATION_ID,

        CUSTOMS_VALUE

       ITEM_NO,

       EXPORT_DUTY_EXEMPTED,

       EXCISE_DUTY_EXEMPTED

RESIDENT TableA;

DROP TABLE TableA;


Expression in report:

=Sum(CUSTOMS_VALUE) is showing wrong.

Why after cross table CUSTOMS_VALUE is showing wrong??

Thanks,

Narender

Labels (1)
10 Replies
narender123
Specialist
Specialist
Author

Thanks for your reply.