Forum Discussion
EduardoAtalaia
4 years agoFrequent Visitor
LTV CLIENTE
Hello! I have a question, how to calculate and display the LTV (Lifetime Value) percentage of customers?
amitchandak
4 years agoSuper User
EduardoAtalaia , LTD you can get like this
LTD(complete till date) =
var _max = if(isfiltered('Date'),MAX( 'Date'[Date]) , today())
var _min = minx(all('Date'), 'Date'[Date]) // or minx(allselected('Date'), 'Date'[Date])
return
CALCULATE([net] ,DATESBETWEEN('Date'[Date],_min,_max))
% depend on what you want
- EduardoAtalaia4 years agoFrequent Visitor
Percentage would be total LTV, for example:
customer-1 $1000 % what percentage
Customer-2 $4500 % ||
Customer-3 $4000 % ||
total $9500
The doubt how to calculate the percentage! - EduardoAtalaia4 years agoFrequent Visitor
Would that date be from the dCalendar or order date?