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: 
Not applicable

Divide 2 fields

Hi,

I have a script consisting of several joins. I want to add a calculated field in the end, where I devide the value of 2 fields. My problem is that when deviding the key field is not taken into account. See attached file.

I would expect a result with 3 rows - one row for each article. Please help.

Labels (1)
1 Solution

Accepted Solutions
swuehl
Champion III
Champion III

I think you need to use the Article field in your last left join:

left join (Data)

load Article,

    Qty/BoxSize as NumberBoxes

Resident Data;

View solution in original post

2 Replies
swuehl
Champion III
Champion III

I think you need to use the Article field in your last left join:

left join (Data)

load Article,

    Qty/BoxSize as NumberBoxes

Resident Data;

Not applicable
Author

Use resident load, see attached