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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Semiro
Contributor
Contributor

Shown a diagrame with residual values in percent

Hello,

Is it possible to display a diagram with residual values as a percentage with the specified data:

MakeModelYear (manufacturing year)Date (Sold)Listprice
AudiA320002017-05-20120000
AudiA420022018-06-13175000


And how the different cars depreciate in value each year of the cars age, up to the age of 10 years.

I have tried something like this:

 

 

If(Count(total <Make,Model> ListPrice),
  Sum(ListPrice)/(((YearSold)-(Year))/10)
)

 

 

where YearSold is an "excerpt" of "Date"

date,
Year ([Date]) AS YearSold,

What am I doing wrong and how should I think?
Thanks in advance!

4 Replies
Taoufiq_Zarra

can you share a sample data and the output expected ?

Regards,
Taoufiq ZARRA

"Please LIKE posts and "Accept as Solution" if the provided solution is helpful "

(you can mark up to 3 "solutions") 😉
Semiro
Contributor
Contributor
Author

Hi Taoufiq ZARRA,

The output should be something like this:

a3-a4.jpg

Taoufiq_Zarra

can you further develop your need?

and provide a sample data to be able to give the exact solution.

Regards,
Taoufiq ZARRA

"Please LIKE posts and "Accept as Solution" if the provided solution is helpful "

(you can mark up to 3 "solutions") 😉
Semiro
Contributor
Contributor
Author

This is a sample data:

MakeModelYear (manufacturing year)Date (Sold)Listprice
AudiA320002017-05-20120000
AudiA420022018-06-13175000

 

My further develop is how to show residual value over a 10 year period. Don't know how to explain it better.