Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
abhaysingh
Specialist II
Specialist II

To add Value in Field

Hi Every one

Can Any one pls help me in this below..

I have one table which contain a field FIELD1 having four value in that i.e. cost, revenue, Deprecation, Amortization and i want to add Gain, Ebit, Gain %, Ebit% in same Filed FIELD1

HOW i can do this

5 Replies
robert_mika
Master III
Master III

How does your data set look like?

Are the fields to be added coming from different data set or are they calculated?

If the latest, how?

abhaysingh
Specialist II
Specialist II
Author

they are calculated like for gain it is some of Revenue + Cost ans so on

alexandros17
Partner - Champion III
Partner - Champion III

Load FIELD1 resident myTable;

concatenate

Load * inline [

FIELD1

Gain,

Ebit,

Gain %,

Ebit%

];

let me know

robert_mika
Master III
Master III

Does your data model look similar to this?

 

Field1Field2
Ravenue100
Cost200
Depraciation300
abhaysingh
Specialist II
Specialist II
Author

yes now i want GAIN which is the sum of Revenue+Cost,, and so on