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

Calculate Growth

Hi,

I want to create a D-growth chart.

It means, If my target value is 10 and sales is 6  and dimension is products.

want to draw a bar chart where dimension will be products name and in expression there would be my D-growth calculation (Those product will be displayed which are behind the target)

I use this formula:

=if(sum(ExtInvMisc)<sum(TargetAmount),ColumnName)

but its not working.

Thanks in advance

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Thanks to all......I did it..


Below expression works as i want;

=if(sum(ExtInvMisc)<sum(TargetAmount),sum(ExtInvMisc))

View solution in original post

4 Replies
Anil_Babu_Samineni

Can you try this?

=if(sum({<ExtInvMisc = {"=Sum(ExtInvMisc)=10"}>} ExtInvMisc)<sum({<TargetAmount = {"=Sum(TargetAmount)=6"}>} TargetAmount),ColumnName)

Or


If(Sum(Sales) = 6 and Sum(target) = 10. Column)

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
isingh30
Specialist
Specialist

Can you share your data in excel format?

Anonymous
Not applicable
Author

Thanks to all......I did it..


Below expression works as i want;

=if(sum(ExtInvMisc)<sum(TargetAmount),sum(ExtInvMisc))

arvind1494
Specialist
Specialist

=if(sum(ExtInvMisc)<sum(TargetAmount),sum(ExtInvMisc))