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

Announcements
Q&A with Qlik - Qlik Cloud Migration: Questions about migrating to Qlik Cloud? Catch the latest replay!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Derived Measure (fact)

I have the following in my load Script:

RangeSum(MedicalAidAmount, Shortfall) as Amount,

Is it possible to have a derived measure (fact) based on Amount, Like

0.2*Amount as OtherAmount

Regards.

Chris

Labels (1)
18 Replies
sunny_talwar
MVP
MVP

Ya try it out. With the information provided, I don't think we can offer more help. If it doesn't work please provide more sample so that we can offer a better solution

Best,

Sunny

Anonymous
Not applicable
Author

Hi Sunny

I get an error message on Concatenate (Table)

the message says Table not found

sunny_talwar
MVP
MVP

What is your table name where you are concatenating it into?

Table:

LOAD Company,

          Branch,

          QTY,

          Amount

FROM Source;

Concatenate (Table)

LOAD 'Manfred' as Company,

          'Fred' as Branch,

          Avg(QTY) * 0.2 as QTY,

          Avg(Amount) * 0.2 as Amount

Resident Table;

In my example Concatenate (Table) matches the Table I am concatenating into.

HTH

Anonymous
Not applicable
Author

Yes i have the that, here with error message:

Screen Shot 2015-12-06 at 01.54.22.png

I have the table [Main Data] in my model

sunny_talwar
MVP
MVP

Can you share your script?

Anonymous
Not applicable
Author

Hi Sunny, managed to sort it out, script was in the wrong place.  Will advise you of outcome

sunny_talwar
MVP
MVP

Sounds good

Anonymous
Not applicable
Author

Thank you very much

Anonymous
Not applicable
Author

Thanks Swuehl