$year_list = $deals_find * $listings_sales;
$year_app = $year_list * $appointments_listings;
$year_lead = $year_app * $leads_appointments;
$year_con = $year_lead * $contacts_leads;
?>
Following is the amount of Contacts, Leads, Appointments and Listings you'll need to achieve your goal.
|
|
Yearly |
Monthly |
Weekly |
Daily |
| Contacts |
echo number_format($year_con,"0",".",",");
?> |
$month_con = $year_con / 12;
echo number_format($month_con,"0",".",",")
?> |
$week_con = $year_con / 52;
echo number_format($week_con,1,".",",");
?> |
$day_con = $year_con / 365;
echo number_format($day_con,1,".",",");
?> |
| Leads |
echo number_format($year_lead,"0");
?> |
$month_lead = $year_lead / 12;
echo round($month_lead,1);
?> |
$week_lead = $year_lead / 52;
echo round($week_lead,1);
?> |
$day_lead = $year_lead / 365;
echo round($day_lead,1);
?> |
| Appointments |
echo number_format($year_app,"1");
?> |
$month_app = $year_app / 12;
echo round($month_app,1);
?> |
$week_app = $year_app / 52;
echo round($week_app,1);
?> |
$day_app = $year_app / 52;
echo round($day_app,1);
?> |
| Listings |
echo round($year_list,1);
?> |
$month_list = $year_list / 12;
echo round($month_list,1);
?> |
$week_list = $year_list / 52;
echo round($week_list,1);
?> |
$day_list = $year_list / 365;
echo round($day_list,1);
?> |