X***9 发帖数: 7385 | 1 有一部分人会觉得同一个车行不同的sales会给不同的价格,比如说去了车行找了
sales1,后来又换了一个sales2, 其实如果sales1和sales2都是report给同一个经理
,价格不会有区别。有的时候不同的经理的确价格会有不同,但是如果sales1的价格已
经记录在案,sales2即便去找了另一个经理,另一个经理一般会遵照第一个经理给的价
格。而且sales1会和sales2互通有无,其实这时候客人本身比较尴尬,因为车行会知道
这一类的客人比较cheap所以不太会上心的给服务。
那么sales会不会对价格产生影响呢?答案是yes and no。
首先我来解释一下车行sales的工资方式,现在的sales一般是2种工资方式:
1。commision based
2。unit based
1,就是按每辆车的利润提成,一般在20-30%,比如说一个车如果车行利润1000,那么卖
一辆他会拿200-300元。那么如果一个车已经亏钱在卖了,那么他每卖一辆会拿一个
mini(保底),一般在100-150元。这种车行的价格是不固定的,一般是标的很低然后
再加option,然后用讨价还价的... 阅读全帖 |
|
w******r 发帖数: 936 | 2 proc means data=work.diversification;
by GVKEY YEAR sic2;
Var SALE;
Output OUT = work.sales2 SUM (sale)=salesic2;
run;
quit;
在work.sales2里面竟然找不到salesic2这个变量,大家帮我看看这是怎么回事啊,先
谢谢啦, |
|
d*r 发帖数: 238 | 3 I am working on an asp.net application using c#.
It queris a database and shows the query result as a line of title followed by
a table ( I used Label + DataGrid).
For example, for a Sale database, the web form shows
Date: (in a Label)
Sales: (in a DataGrid)
Now, the user wants to query more than one date and shows the result in one
web form which looks like:
Date1:
Sales1:
Date2:
Sales2:
Date3:
Sale3
...
Since I don't know how many dates the user want to query, I cannot fix the
design the of we |
|
T******r 发帖数: 265 | 4 望高手指教
问题:商店前三个月的销售总和,但不同的商店开业时间不同。
month 1 2 3 4 5 6 7 8 9 10 11 12 13
sales1 0 0 0 2.3 4 8 9 7 6 10 ... 0
sales2 0 0 0 0 0 0 0 4.5 5 8 9 ...
....
有什么方便的方法吗?
假设有的商店现在已经倒闭了,也就是最后几个月销售额也是0. |
|
l***i 发帖数: 8 | 5 The following SAS program is submitted:
data test;
set sasuser.employees;
if 2 le years_service le 10 then amount=1000;
else if years_service gt 10 then amount=2000;
else amount=0;
amount_per_year=years_service/amount;
run;
Which one of the following values does the variable Amount_per_year contain
if an employee has been with the company for one year?
A.0
B. 1000
C.2000
D.(missing numeric value)
Why the answer is C? I can not understand. Can any body explain to me why?
Thanks!
#################... 阅读全帖 |
|