Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Calculated field

How do I add a calculated field. There is nothing in the Help Index under this subject. All I want to do is to multiple one field by another field. What would the entry be in the script, and would it be added within the table that you want it to appear, and would you then do a Reload?

Thank you,

Ian

2 Replies
Not applicable
Author

Try:

LOAD *,

campo1 * campo2 AS CalculatedField

FROM Table;

You should reload, it's necessary,

Regards,

Not applicable
Author

Thank you , worked perfectly.