日常工作中有个任务,就是每周要巡视一遍辖区内的监控摄像头,统计出哪些摄像头是好的,哪些没有图像,并标识出变化情况。总共有近900个,之前巡视,记录、标识都是人工完成。工作量还是比较大的。我看了下,觉得可以用vlookup函数让标识摄像头可用状态变化的工作自动完成。 <h2>一、问题简述</h2> <center><img class="aligncenter" src="https://s2.ax1x.com/2019/11/09/MegTAA.jpg" alt="excel-screen1" /></center><br/> <p><center>图一;来源:本人电脑截图。</center></p> 如上图,G列为本周的巡查结果,H列为上周的巡查结果。F列为可视状态变化标识。摄像头状态包括: <ol> <li>无视频信号(无法点开)</li> <li>画面显示无视频信号</li> <li>无画面显示</li> <li>画面模糊</li> <li>画面清晰</li> </ol> 其中1.2.3项视为不可用资源,4.5项视为可用资源。如果本周的检查结果,摄像头,由状态1、2、3变为状态4、5,则F列监控标识应设为“增加可视资源”,反之,则监控标识应设为“减少可视资源”;如果本周与上周的监控可用状态不变,则监控标识设为“无变化”。 <h2>二、vlookup函数简介</h2> vlookup函数的功能是在一个表中按行查找。举个简单例子: <table border="1"> <tbody> <tr> <th>学号</th> <th>姓名</th> <th>成绩</th> </tr> <tr> <td>1</td> <td>张三</td> <td>80</td> </tr> <tr> <td>2</td> <td>李四</td> <td>88</td> </tr> </tbody> </table> 对于上面这张表,vlookup函数的功能就是给出学生的学号,就可以按需要返回该名学生的姓名、成绩等信息。 具体的使用方法: = VLOOKUP (查阅值、包含查阅值的区域、包含返回值的区域中的列号、近似匹配 (TRUE) 或完全匹配 (FALSE))。 对于上表来说,参数一查阅值就是学号,取值范围为1、2;参数二查询范围就是上表在工作簿中的位置;参数三就是你要的返回值的列数,如果你要返回该名学生的姓名,参数三就设为1,表示第一列,如果你要返回该名学生的成绩,参数三就设为2,表示第二列。第四参数设定近似匹配还是完全匹配,近似匹配只适用于数值,如果参数一查阅值是文本,务必设为完全匹配,否则会有意想不到的返回值。 <h2>三、问题解决</h2> 根据问题描述,现在工作簿中建个表,内容如下: <table border="1"> <tbody> <tr> <td>无视频信号(无法点开)</td> <td>1</td> </tr> <tr> <td>画面显示无视频信号</td> <td>1</td> </tr> <tr> <td>无画面显示</td> <td>1</td> </tr> <tr> <td>画面模糊</td> <td>2</td> </tr> <tr> <td>画面清晰</td> <td>2</td> </tr> </tbody> </table> 第二列取值1表示该摄像头不可用,取值2表示摄像头可用。用vlookup函数查询这个表,得到本周和上周的摄像头可用状态,再用if函数进行比较,返回相应的状态变化标识,F列的具体函数如下(以第一行为例,余下拖动即可): <pre>=IF(VLOOKUP(H2,$O$2:$P$6,2,FALSE)=VLOOKUP(G2,$O$2:$P$6,2,FALSE),"无变化",IF(VLOOKUP(H2,$O$2:$P$6,2,FALSE)=1,"增加可视资源","减少可视资源")) </pre> 说明:查阅值从G列或H列中取,因为是文本信息,参数四设为FALSE,为精确匹配。$O$2:$P$6为上面的可用状态对照表在工作簿中的位置,因为后面要拖动复制公式,所以这里要加“$”表示绝对位置引用。 公式的最终使用效果,巡查人员只需要按巡查结果设定摄像头状态,与上周相比的变化情况,公式会自动给出: <center><img class="aligncenter" src="https://s2.ax1x.com/2019/11/09/MeOvRO.gif" alt="excel-gif" /></center><br/> <hr /> 参考资料: <ul> <li><a href="https://support.office.com/zh-cn/article/vlookup-%E5%87%BD%E6%95%B0-0bbc8083-26fe-4963-8ab8-93a18ad188a1">VLOOKUP 函数</a></li> </ul> <br /><center><hr/><em>Posted from my blog with <a href='https://wordpress.org/plugins/steempress/'>SteemPress</a> : https://darwincheva.000webhostapp.com/2019/11/%e7%94%a8excel%e7%9a%84vlookup%e5%87%bd%e6%95%b0%e6%8f%90%e9%ab%98%e5%b7%a5%e4%bd%9c%e6%95%88%e7%8e%87%e3%80%82 </em><hr/></center>
author | cheva | ||||||
---|---|---|---|---|---|---|---|
permlink | excelvlookup-dmj1jvqali | ||||||
category | cn | ||||||
json_metadata | {"community":"steempress","app":"busy/2.5.4","tags":["cn","cn-stem","jjm","steempress","steemstem","sct","sct-cn","sct-freeboard","palnet","zzan","dblog","mediaofficials","marlians","neoxian","lassecash","upfundme","busy","actnearn","stem"],"canonical_url":"https://darwincheva.000webhostapp.com/2019/11/%e7%94%a8excel%e7%9a%84vlookup%e5%87%bd%e6%95%b0%e6%8f%90%e9%ab%98%e5%b7%a5%e4%bd%9c%e6%95%88%e7%8e%87%e3%80%82","image":["https://s2.ax1x.com/2019/11/09/MegTAA.jpg","https://s2.ax1x.com/2019/11/09/MeOvRO.gif"],"links":["https://support.office.com/zh-cn/article/vlookup-%E5%87%BD%E6%95%B0-0bbc8083-26fe-4963-8ab8-93a18ad188a1","https://wordpress.org/plugins/steempress/","https://darwincheva.000webhostapp.com/2019/11/%e7%94%a8excel%e7%9a%84vlookup%e5%87%bd%e6%95%b0%e6%8f%90%e9%ab%98%e5%b7%a5%e4%bd%9c%e6%95%88%e7%8e%87%e3%80%82"],"format":"markdown"} | ||||||
created | 2019-11-09 05:34:36 | ||||||
last_update | 2019-11-09 08:59:39 | ||||||
depth | 0 | ||||||
children | 5 | ||||||
last_payout | 2019-11-16 05:34:36 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 3.469 HBD | ||||||
curator_payout_value | 3.961 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 2,488 | ||||||
author_reputation | 301,817,720,448,527 | ||||||
root_title | 用excel的vlookup函数提高工作效率。 | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 92,331,761 | ||||||
net_rshares | 27,243,648,301,860 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wackou | 0 | 143,648,002,624 | 1.94% | ||
tombstone | 0 | 337,413,004,697 | 1.16% | ||
abit | 0 | 714,071,050,119 | 100% | ||
drifter1 | 0 | 1,034,548,924 | 6.48% | ||
chris4210 | 0 | 20,735,921,844 | 3.24% | ||
scalextrix | 0 | 22,232,824,826 | 50% | ||
justtryme90 | 0 | 620,699,715,370 | 30% | ||
eric-boucher | 0 | 13,074,555,198 | 3.24% | ||
thecryptodrive | 0 | 314,350,539,534 | 25% | ||
wongshiying | 0 | 2,234,007,426 | 8.86% | ||
anwenbaumeister | 0 | 345,428,815 | 6.48% | ||
mammasitta | 0 | 1,780,375,371 | 0.32% | ||
matt-a | 0 | 112,543,406,532 | 3% | ||
redpalestino | 0 | 1,161,962,599,148 | 15% | ||
cabi5boh | 0 | 439,599,603 | 50% | ||
diana.catherine | 0 | 944,235,210 | 6.48% | ||
inertia | 0 | 67,234,650,678 | 100% | ||
blueorgy | 0 | 17,020,964,263 | 4.86% | ||
steempress | 0 | 60,526,744,520 | 11.25% | ||
velourex | 0 | 19,659,558,601 | 6.48% | ||
lemouth | 0 | 231,851,869,354 | 30% | ||
tumutanzi | 0 | 2,519,538,724 | 3.89% | ||
rwilday | 0 | 161,766,158 | 100% | ||
alaqrab | 0 | 4,026,744,002 | 3.24% | ||
lamouthe | 0 | 2,504,567,928 | 30% | ||
holoz0r | 0 | 2,594,650,550 | 0.64% | ||
lk666 | 0 | 2,197,767,716 | 3.24% | ||
justyy | 0 | 388,753,011,508 | 14.43% | ||
curie | 0 | 2,240,803,314,025 | 6.48% | ||
techslut | 0 | 58,043,667,418 | 12% | ||
hendrikdegrote | 0 | 94,664,922,287 | 6.48% | ||
vact | 0 | 141,450,644,355 | 6.48% | ||
steemsportsfund | 0 | 101,346,016,787 | 100% | ||
steemstem | 0 | 1,388,261,435,094 | 30% | ||
dashfit | 0 | 684,588,351 | 3.24% | ||
busy.org | 0 | 182,222,986 | 0.9% | ||
saleg25 | 0 | 1,184,181,127 | 3.24% | ||
driptorchpress | 0 | 715,940,453 | 3.24% | ||
dna-replication | 0 | 8,515,708,482 | 30% | ||
dimitrisp | 0 | 1,554,750,979 | 5% | ||
gmedley | 0 | 1,363,929,599 | 3.24% | ||
decentral | 0 | 779,758,123 | 1.62% | ||
sokha | 0 | 952,583,411 | 7.5% | ||
bloom | 0 | 132,212,844,734 | 30% | ||
arnel | 0 | 1,130,435,260 | 3.24% | ||
vannfrik | 0 | 11,106,774,168 | 7% | ||
iansart | 0 | 4,097,041,829 | 3.56% | ||
jagged | 0 | 710,477,138 | 1.29% | ||
bitrocker2020 | 0 | 2,948,259,199 | 0.32% | ||
jiujitsu | 0 | 3,109,189,875 | 3.24% | ||
guyverckw | 0 | 14,268,626,432 | 8.86% | ||
lekang | 0 | 786,320,613 | 3.24% | ||
kenchung | 0 | 3,200,600,972 | 8.86% | ||
nuagnorab | 0 | 1,708,387,289 | 8.86% | ||
linuslee0216 | 0 | 552,511,398 | 8.86% | ||
helo | 0 | 5,388,241,767 | 15% | ||
wilkinshui | 0 | 11,556,324,740 | 8.86% | ||
samminator | 0 | 17,830,764,955 | 15% | ||
wishmaiden | 0 | 1,394,718,470 | 5% | ||
zerotoone | 0 | 1,289,802,729 | 3.24% | ||
locikll | 0 | 5,730,394,633 | 12.96% | ||
kjaeger | 0 | 113,843,553 | 50% | ||
mahdiyari | 0 | 34,413,800,443 | 15% | ||
virus707 | 0 | 244,463,272,130 | 1% | ||
marylaw | 0 | 3,439,700,033 | 8.86% | ||
lorenzor | 0 | 5,806,629,927 | 50% | ||
firstamendment | 0 | 6,746,629,891 | 10% | ||
aboutyourbiz | 0 | 1,380,109,791 | 6.48% | ||
derosnec | 0 | 1,123,414,946 | 3.24% | ||
lastozgur | 0 | 716,807,004 | 15% | ||
shenchensucc | 0 | 29,580,314,414 | 8.86% | ||
alexander.alexis | 0 | 17,927,121,400 | 30% | ||
biuiam | 0 | 1,620,368,297 | 8.86% | ||
suesa | 0 | 126,972,272,288 | 25% | ||
cryptokrieg | 0 | 1,645,146,209 | 6.48% | ||
rival | 0 | 3,240,586,942 | 2% | ||
tensor | 0 | 1,849,997,475 | 3.24% | ||
destrudo | 0 | 15,218,649 | 15% | ||
tngflx | 0 | 1,926,976,793 | 1.94% | ||
ludmila.kyriakou | 0 | 1,013,926,473 | 9% | ||
flatman | 0 | 2,415,259,694 | 6.48% | ||
fancybrothers | 0 | 13,260,646,755 | 9% | ||
allcapsonezero | 0 | 4,874,790,066 | 3.24% | ||
minnowbooster | 0 | 3,767,439,487,024 | 25% | ||
mrpointp | 0 | 8,861,536,383 | 8.86% | ||
felt.buzz | 0 | 1,918,802,730 | 1.62% | ||
howo | 0 | 254,913,186,981 | 11.25% | ||
tsoldovieri | 0 | 2,216,636,110 | 15% | ||
neumannsalva | 0 | 1,525,837,946 | 3.24% | ||
stayoutoftherz | 0 | 24,627,730,653 | 1.94% | ||
abigail-dantes | 0 | 608,433,106,200 | 30% | ||
syh7758520 | 0 | 1,540,623,633 | 8.86% | ||
buildteam | 0 | 122,882,653,207 | 100% | ||
twoitguys | 0 | 1,441,109,731 | 6.48% | ||
zonguin | 0 | 2,153,124,995 | 7.5% | ||
prapanth | 0 | 940,079,789 | 3.24% | ||
alexzicky | 0 | 2,456,775,721 | 9% | ||
mountain.phil28 | 0 | 3,582,942,970 | 25% | ||
jasonbu | 0 | 25,124,938,050 | 25% | ||
coolbuddy | 0 | 0 | 1% | ||
idx | 0 | 13,072,738,388 | 100% | ||
tuoficinavirtual | 0 | 95,316,458 | 25% | ||
iamphysical | 0 | 2,911,197,638 | 90% | ||
dipom98 | 0 | 1,312,802,509 | 3.24% | ||
felixrodriguez | 0 | 1,227,028,707 | 15% | ||
zawil | 0 | 274,049,437 | 100% | ||
revo | 0 | 20,398,245,139 | 6.48% | ||
azulear | 0 | 3,425,471,562 | 100% | ||
felicenavidad | 0 | 3,017,036,032 | 50% | ||
silviu93 | 0 | 4,700,300,429 | 15% | ||
honeysara | 0 | 624,502,019 | 1.62% | ||
mrspointm | 0 | 8,852,246,487 | 8.86% | ||
liumei | 0 | 817,877,691 | 8.86% | ||
kimzwarch | 0 | 6,140,565,693 | 3% | ||
olusolaemmanuel | 0 | 922,297,761 | 4.53% | ||
waiyee422 | 0 | 692,922,590 | 8.86% | ||
massivevibration | 0 | 4,309,399,863 | 5% | ||
kamikaze | 0 | 43,234,748,335 | 100% | ||
yellowbird | 0 | 2,942,145,158 | 8.86% | ||
davidke20 | 0 | 8,513,508,184 | 4% | ||
rosatravels | 0 | 3,655,355,640 | 8.86% | ||
roleerob | 0 | 3,331,857,713 | 1.29% | ||
minnowpowerup | 0 | 3,771,356,706 | 3.24% | ||
sandeep126 | 0 | 27,107,762,089 | 3.24% | ||
erikkun28 | 0 | 0 | 1% | ||
cryptononymous | 0 | 797,455,926 | 3.24% | ||
minloulou | 0 | 1,450,226,400 | 8.86% | ||
johnquake | 0 | 17,162,521,281 | 3.24% | ||
jsquare | 0 | 1,554,114,114,419 | 46% | ||
buttcoins | 0 | 31,465,645,207 | 1.29% | ||
rscalabrini | 0 | 10,496,562,471 | 30% | ||
toocurious | 0 | 5,346,483,800 | 6.48% | ||
peaceandwar | 0 | 1,027,987,138 | 3.24% | ||
enzor | 0 | 652,248,096 | 15% | ||
spacecadet1 | 0 | 322,046,515,933 | 100% | ||
backtomining | 0 | 2,734,593,598 | 3.5% | ||
carloserp-2000 | 0 | 26,651,847,380 | 100% | ||
gra | 0 | 2,665,691,891 | 30% | ||
jianan | 0 | 5,072,822,071 | 8.86% | ||
postpromoter | 0 | 2,262,753,498,028 | 30% | ||
omstavan | 0 | 5,265,606,677 | 100% | ||
bluefinstudios | 0 | 804,505,038 | 1.94% | ||
thevillan | 0 | 884,019,706 | 0.64% | ||
aalok | 0 | 137,858,896 | 26% | ||
windowglass | 0 | 29,488,763,976 | 8.86% | ||
zmx | 0 | 902,085,596 | 8.86% | ||
cnbuddy | 0 | 115,210,962,378 | 7.78% | ||
nicole-st | 0 | 916,164,251 | 3.24% | ||
potplucker | 0 | 2,261,454,063 | 15% | ||
jasimg | 0 | 1,040,928,323 | 3.24% | ||
drmake | 0 | 3,555,147,838 | 3.24% | ||
jrvacation | 0 | 17,111,133,372 | 5.62% | ||
aboutcoolscience | 0 | 123,515,680,741 | 30% | ||
angelina6688 | 0 | 4,386,127,089 | 8.86% | ||
pechichemena | 0 | 2,109,269,633 | 1.29% | ||
ribbitingscience | 0 | 5,128,157,983 | 15% | ||
amestyj | 0 | 4,665,986,532 | 100% | ||
imcesca | 0 | 13,535,754,434 | 15% | ||
mhm-philippines | 0 | 8,516,719,487 | 3.24% | ||
bitinvdig0 | 0 | 1,117,915,064 | 24% | ||
skycae | 0 | 844,844,893 | 6.48% | ||
lebin | 0 | 918,223,286,513 | 50% | ||
kenadis | 0 | 8,201,296,290 | 30% | ||
maticpecovnik | 0 | 2,493,621,644 | 12% | ||
steempsych | 0 | 8,064,376,646 | 30% | ||
iqbaladan | 0 | 622,199,958 | 3.24% | ||
robotics101 | 0 | 3,024,515,906 | 30% | ||
onemedia | 0 | 582,014,698 | 6.48% | ||
mcyusuf | 0 | 1,102,530,793 | 15% | ||
gentleshaid | 0 | 5,541,892,110 | 10% | ||
cheva | 0 | 37,247,665,319 | 100% | ||
nunesso | 0 | 164,482,901 | 50% | ||
venalbe | 0 | 836,690,601 | 3.24% | ||
danaedwards | 0 | 727,862,562 | 6.48% | ||
ivymalifred | 0 | 1,159,535,956 | 50% | ||
sco | 0 | 29,849,401,765 | 30% | ||
ennyta | 0 | 938,226,247 | 50% | ||
gordon92 | 0 | 577,576,619 | 3.24% | ||
bitcoinportugal | 0 | 562,924,889 | 50% | ||
stahlberg | 0 | 1,474,577,571 | 3.24% | ||
eliaschess333 | 0 | 11,900,323,146 | 50% | ||
iamjadeline | 0 | 1,918,824,166 | 0.97% | ||
langford | 0 | 560,219,516 | 30% | ||
mattiarinaldoni | 0 | 0 | 1% | ||
shinedojo | 0 | 842,809,032 | 6.48% | ||
infoairdrops | 0 | 555,102,306 | 100% | ||
dreamsss | 0 | 549,667,054 | 100% | ||
suesa-random | 0 | 14,642,446,796 | 50% | ||
coinmeria | 0 | 686,074,796 | 35% | ||
oguzhangazi | 0 | 681,280,520 | 6.48% | ||
knfitaly | 0 | 166,517,689,689 | 27% | ||
jeenger | 0 | 29,518,293,077 | 5% | ||
terrylovejoy | 0 | 8,249,255,318 | 12% | ||
neneandy | 0 | 7,381,734,143 | 6.48% | ||
steepup | 0 | 656,893,906 | 12% | ||
gribouille | 0 | 1,168,767,970 | 30% | ||
traviseric | 0 | 247,864,051 | 50% | ||
john371911 | 0 | 19,908,361,079 | 8.86% | ||
emmali | 0 | 703,798,279 | 8.86% | ||
lastditch | 0 | 94,212,404 | 8% | ||
stemng | 0 | 9,964,753,408 | 15% | ||
josalarcon2 | 0 | 1,196,040,207 | 6.48% | ||
ideas-abstractas | 0 | 1,021,605,850 | 6.48% | ||
kingabesh | 0 | 552,199,130 | 15% | ||
miguelangel2801 | 0 | 776,339,662 | 50% | ||
didic | 0 | 4,854,536,709 | 20% | ||
operahoser | 0 | 573,037,469 | 0.97% | ||
emiliomoron | 0 | 6,695,499,193 | 50% | ||
dexterdev | 0 | 866,841,246 | 15% | ||
intellihandling | 0 | 1,688,939,722 | 50% | ||
nwjordan | 0 | 967,464,212 | 6.48% | ||
oghie | 0 | 954,676,063 | 50% | ||
geopolis | 0 | 1,974,967,209 | 30% | ||
madefrance | 0 | 1,864,993,191 | 3.24% | ||
robertbira | 0 | 3,211,398,893 | 7.5% | ||
cheema1 | 0 | 2,058,197,333 | 6.48% | ||
alexdory | 0 | 16,915,390,251 | 15% | ||
irgendwo | 0 | 7,266,594,781 | 10.5% | ||
flugschwein | 0 | 5,583,775,933 | 22.5% | ||
cyprianj | 0 | 795,269,490 | 15% | ||
shentrading | 0 | 4,502,921,042 | 8.86% | ||
melvin7 | 0 | 10,907,779,022 | 30% | ||
francostem | 0 | 4,143,735,625 | 30% | ||
ivan-g | 0 | 856,304,027 | 3.24% | ||
endopediatria | 0 | 692,890,255 | 20% | ||
giovaabbatichio | 0 | 994,322,812 | 6.48% | ||
croctopus | 0 | 1,450,554,806 | 100% | ||
putu300 | 0 | 1,636,441,195 | 7% | ||
zipporah | 0 | 2,026,163,334 | 1.29% | ||
emmanuel293 | 0 | 103,082,852 | 25% | ||
cryptofuwealth | 0 | 99,947,512 | 11% | ||
positiveninja | 0 | 965,748,238 | 3.24% | ||
davinci.witness | 0 | 103,763,159,973 | 30% | ||
newenx | 0 | 481,506,062 | 10% | ||
satren | 0 | 29,905,035,539 | 10% | ||
lordjames | 0 | 5,288,316,510 | 3.24% | ||
bscrypto | 0 | 4,524,390,111 | 3.24% | ||
ericet | 0 | 31,320,330,859 | 8.86% | ||
tomastonyperez | 0 | 15,350,716,326 | 50% | ||
a0i | 0 | 73,076,562,959 | 30% | ||
elvigia | 0 | 10,829,261,963 | 50% | ||
scoora82 | 0 | 0 | 24% | ||
d00k13 | 0 | 1,701,782,426 | 1.62% | ||
vittoriozuccala | 0 | 1,088,693,783 | 3.24% | ||
juli1 | 0 | 295,976,419 | 74% | ||
qberry | 0 | 3,392,244,694 | 3.24% | ||
lesmouths-travel | 0 | 1,539,855,559 | 19.5% | ||
aellly | 0 | 30,698,548,126 | 8.86% | ||
markko | 0 | 64,209,302 | 100% | ||
jansher | 0 | 1,867,440,920 | 10% | ||
chuuuckie | 0 | 5,403,927,144 | 5.62% | ||
de-stem | 0 | 11,466,957,101 | 29.7% | ||
serylt | 0 | 2,398,107,963 | 29.4% | ||
berien | 0 | 906,880,845 | 11.25% | ||
spaghettiscience | 0 | 13,663,343,777 | 15% | ||
misia1979 | 0 | 622,758,580 | 3.24% | ||
josedelacruz | 0 | 8,756,191,843 | 50% | ||
steempress-io | 0 | 4,593,046,659,772 | 11.25% | ||
joseangelvs | 0 | 864,578,333 | 100% | ||
dearw | 0 | 3,131,254,503 | 3.24% | ||
outtheshellvlog | 0 | 750,017,023 | 3.24% | ||
camuel | 0 | 14,801,653,017 | 20% | ||
andrewma | 0 | 885,006,728 | 5% | ||
indigoocean | 0 | 6,023,952,028 | 3.24% | ||
phage93 | 0 | 5,834,739,387 | 7.5% | ||
deholt | 0 | 1,567,843,096 | 25.5% | ||
softmetal | 0 | 3,966,218,048 | 8.86% | ||
davinci.polyglot | 0 | 243,620,618 | 30% | ||
xiaoliang | 0 | 39,913,339,940 | 8.86% | ||
i-d | 0 | 362,017,863,453 | 8.86% | ||
romeskie | 0 | 763,915,820 | 3.24% | ||
musicvoter | 0 | 10,211,801,041 | 2% | ||
crystalhuman | 0 | 2,857,930,614 | 30% | ||
pladozero | 0 | 40,785,009,696 | 10% | ||
anomalogy | 0 | 829,753,269 | 4.86% | ||
temitayo-pelumi | 0 | 2,317,989,653 | 30% | ||
hmayak | 0 | 923,622,175 | 8.86% | ||
andrick | 0 | 844,156,216 | 50% | ||
archisteem | 0 | 3,605,108,819 | 7.5% | ||
steemjet | 0 | 21,919,802,143 | 3.24% | ||
yusvelasquez | 0 | 1,600,805,465 | 50% | ||
springfall | 0 | 894,922,670 | 100% | ||
doctor-cog-diss | 0 | 1,156,594,303 | 30% | ||
davinci.times | 0 | 5,713,933,147 | 30% | ||
trisolaran | 0 | 1,490,166,919 | 3.24% | ||
alexworld | 0 | 446,205,796 | 25% | ||
musicvoter2 | 0 | 26,830,339,663 | 3% | ||
fishlucy | 0 | 13,304,535,472 | 50% | ||
marcuz | 0 | 717,381,486 | 15% | ||
itastem | 0 | 12,739,623,637 | 30% | ||
evanpetzer | 0 | 3,062,488,718 | 10% | ||
acont | 0 | 1,559,613,974 | 50% | ||
lightcaptured | 0 | 3,657,224,582 | 5% | ||
schroders | 0 | 2,525,709,425 | 1.94% | ||
anaestrada12 | 0 | 8,028,490,954 | 100% | ||
sagesigma | 0 | 261,403,078 | 1% | ||
davinci.art | 0 | 630,320,470 | 30% | ||
tydebbie | 0 | 698,383,161 | 5% | ||
aminealaoui | 0 | 593,658,215 | 3.24% | ||
moneybaby | 0 | 3,316,736,054 | 8.86% | ||
ashikstd | 0 | 1,587,747,337 | 3.24% | ||
longer | 0 | 1,101,541,604 | 50% | ||
team-cn | 0 | 80,909,209,113 | 10% | ||
blewitt | 0 | 7,165,205,145 | 0.32% | ||
kafupraise | 0 | 104,831,588 | 34% | ||
drsensor | 0 | 621,779,621 | 24% | ||
wanggang | 0 | 15,055,385,294 | 2% | ||
revueh | 0 | 662,444,837 | 3.24% | ||
shengwu | 0 | 542,666,462 | 100% | ||
ilovecryptopl | 0 | 1,015,718,936 | 5.18% | ||
yomismosoy | 0 | 728,310,919 | 50% | ||
casiloko | 0 | 244,145,956 | 50% | ||
bflanagin | 0 | 2,641,453,519 | 3.24% | ||
ubaldonet | 0 | 10,592,370,456 | 70% | ||
chilis | 0 | 3,006,243,048 | 8.86% | ||
lillywilton | 0 | 964,293,619 | 20% | ||
call-me-howie | 0 | 598,291,671 | 3.24% | ||
goblinknackers | 0 | 42,826,155,678 | 3% | ||
wstanley226 | 0 | 64,880,110 | 50% | ||
gpcx86 | 0 | 34,511,738 | 2% | ||
amart29 | 0 | 2,475,363,144 | 10% | ||
jk6276 | 0 | 562,103,647 | 1.29% | ||
yaelg | 0 | 2,583,556,859 | 5% | ||
kylealex | 0 | 5,042,513,843 | 10% | ||
stooner | 0 | 249,624,312 | 50% | ||
davinci.pay | 0 | 994,100,764 | 15% | ||
rubenp | 0 | 545,165,377 | 100% | ||
julian2013 | 0 | 25,889,451,716 | 8.86% | ||
minimining | 0 | 759,907,855 | 3.24% | ||
loveforlove | 0 | 2,054,511,026 | 30% | ||
melaniewang | 0 | 1,367,957,343 | 8.86% | ||
fran.frey | 0 | 4,037,964,112 | 50% | ||
artsymelanie | 0 | 4,752,906,916 | 8.86% | ||
perpetuum-lynx | 0 | 823,084,364 | 29.4% | ||
annaabi | 0 | 634,106,379 | 3.24% | ||
abraham10 | 0 | 329,606,004 | 82% | ||
emperorhassy | 0 | 1,032,688,048 | 30% | ||
moniroy | 0 | 87,995,603 | 50% | ||
davinci.vote | 0 | 318,584,622 | 30% | ||
trang | 0 | 666,053,370 | 3.24% | ||
stem-espanol | 0 | 68,491,702,582 | 100% | ||
praditya | 0 | 2,484,731,557 | 24% | ||
slientstorm | 0 | 7,174,620,428 | 8.86% | ||
laissez-faire | 0 | 81,407,541 | 100% | ||
pet.society | 0 | 194,469,901,820 | 8.86% | ||
palasatenea | 0 | 544,067,087 | 3.24% | ||
onelovesteem | 0 | 717,670,081 | 3.24% | ||
knightbjj | 0 | 691,159,674 | 4.86% | ||
the.success.club | 0 | 2,949,914,251 | 3.24% | ||
chickenmeat | 0 | 1,243,445,384 | 3.24% | ||
macoolette | 0 | 15,786,590,916 | 1.94% | ||
javier.dejuan | 0 | 7,714,471,074 | 30% | ||
annepink | 0 | 5,926,962,836 | 8.86% | ||
cherryzz | 0 | 2,049,449,274 | 8.86% | ||
tommyl33 | 0 | 822,991,094 | 3.24% | ||
scienze | 0 | 15,988,749,257 | 30% | ||
scienza | 0 | 16,151,773,957 | 30% | ||
teamcn-shop | 0 | 1,743,202,045 | 5% | ||
reverseacid | 0 | 639,775,916 | 3.24% | ||
giulyfarci52 | 0 | 1,668,424,449 | 50% | ||
esthersanchez | 0 | 554,201,833 | 40% | ||
tinabrezpike | 0 | 1,651,436,449 | 100% | ||
alvin0617 | 0 | 570,929,429 | 3.24% | ||
adalger | 0 | 2,510,837,247 | 0.97% | ||
akireuna | 0 | 9,112,156,857 | 15% | ||
the-rhapsodist | 0 | 34,412,073,581 | 30% | ||
megadrive | 0 | 20,021,795,706 | 100% | ||
stem.witness | 0 | 32,838,743,757 | 30% | ||
hiddendragon | 0 | 935,851,708 | 2.26% | ||
empressteemah | 0 | 1,839,513,369 | 30% | ||
edriseur | 0 | 59,933,702,711 | 11.25% | ||
wherein | 0 | 237,229,105,633 | 6% | ||
khan.dayyanz | 0 | 1,314,417,524 | 6.48% | ||
alex-hm | 0 | 810,020,969 | 50% | ||
wilmer14molina | 0 | 1,098,277,297 | 50% | ||
ppss | 0 | 6,731,414,062 | 6.35% | ||
benhurg | 0 | 541,869,782 | 100% | ||
aristotle.team | 0 | 6,285,480,657 | 10% | ||
michaias | 0 | 2,090,841,574 | 75% | ||
kingnosa | 0 | 175,073,272 | 50% | ||
honey00 | 0 | 596,283,071 | 8.86% | ||
morningshine | 0 | 2,235,161,680 | 8.86% | ||
cn-activity | 0 | 1,248,206,864 | 8.86% | ||
travisung | 0 | 18,559,148,540 | 3.24% | ||
davidchen | 0 | 1,020,432,460 | 8.86% | ||
cameravisual | 0 | 39,298,428,352 | 50% | ||
crowdwitness | 0 | 20,053,792,507 | 15% | ||
amin-ove | 0 | 202,650,101 | 50% | ||
trailreward | 0 | 1,773,736,118 | 8% | ||
bunchtale | 0 | 43,961,109 | 25% | ||
hairgistix | 0 | 3,130,775,822 | 3.24% | ||
goodcontentbot | 0 | 63,433,764 | 50% | ||
huilco | 0 | 517,288,547 | 100% | ||
hanyseek | 0 | 698,707 | 25% | ||
herculean | 0 | 79,223,481 | 50% | ||
pulleyhead | 0 | 1,578,500,777 | 6.48% | ||
allthetimer | 0 | 114,961,350 | 98% | ||
devyleona | 0 | 4,038,619,839 | 8.86% | ||
alexgamer | 0 | 234,567,793 | 50% | ||
bluemaskman | 0 | 608,242,580 | 3.24% | ||
yanhan | 0 | 1,477,153,529 | 8.86% | ||
donasys | 0 | 56,060,860 | 50% | ||
breakout101 | 0 | 752,208,260 | 3.24% | ||
mtfmohammad | 0 | 109,267,821 | 25% | ||
cleiver | 0 | 46,244,942 | 50% | ||
chrisluke | 0 | 228,027,251 | 26% | ||
newton666 | 0 | 895,205,208 | 15% | ||
pflanzenlilly | 0 | 242,872,459 | 50% | ||
sapphire.app | 0 | 0 | 50% | ||
androshchuk | 0 | 25,992,253 | 50% | ||
m18207319997 | 0 | 21,537,580,363 | 8.86% | ||
sumotori | 0 | 897,577,898 | 75% | ||
naturalproducts | 0 | 31,505,049,697 | 25% | ||
jackramsey | 0 | 869,633,827 | 4.53% | ||
alexmonster | 0 | 119,004,144 | 50% | ||
smdragon | 0 | 119,480,905 | 50% | ||
gutenmorganism | 0 | 924,608,940 | 50% | ||
theinspiration | 0 | 556,618,680 | 100% | ||
faberleggenda | 0 | 507,131,914 | 100% | ||
epic4chris | 0 | 558,442,506 | 100% | ||
mohaaking | 0 | 213,812,941 | 50% | ||
gustavoagt | 0 | 398,496,910 | 97% | ||
elements5 | 0 | 689,195,201 | 25% | ||
brendanweinhold | 0 | 225,121,428 | 100% | ||
p00k13 | 0 | 190,067,134 | 7.28% | ||
n00k13 | 0 | 281,043,116 | 8.51% | ||
vaccinusveritas | 0 | 0 | 50% | ||
celine-robichaud | 0 | 104,341,992 | 50% | ||
begood2me | 0 | 1,020,158,878 | 3.24% | ||
epicdice | 0 | 29,644,306,760 | 1.94% | ||
bitcoingodmode | 0 | 542,146,727 | 10% | ||
mylord1992 | 0 | 609,955,001 | 8.86% | ||
thetechspot | 0 | 205,279,280 | 26% | ||
jjm13 | 0 | 824,011,253 | 1% | ||
deeanndmathews | 0 | 1,167,821,808 | 3.24% | ||
imaloser | 0 | 46,731,914 | 50% | ||
sembdelgado | 0 | 190,097,833 | 50% | ||
ziox | 0 | 3,876,448,732 | 3.24% | ||
yarak | 0 | 357,776,504 | 100% | ||
kgame | 0 | 731,694,339 | 8.86% | ||
hertz300 | 0 | 37,020,784,675 | 8.86% | ||
afarina46 | 0 | 807,329,393 | 15% | ||
koei | 0 | 608,269,185 | 24% | ||
crimcrim | 0 | 646,268,020 | 50% | ||
sct.teamcn | 0 | 86,230,425 | 24% | ||
nympheas | 0 | 1,400,026,237 | 8% | ||
zzan.co16 | 0 | 317,297,540 | 81% | ||
zzan.co17 | 0 | 311,542,988 | 50% | ||
cn-zzang | 0 | 5,234,642,055 | 22.77% | ||
cn-sct | 0 | 9,125,601,217 | 10% | ||
cn-mot | 0 | 17,824,846 | 5% | ||
xiaoq.sports | 0 | 36,467,252,723 | 8.86% | ||
cn-marlians | 0 | 2,214,347,654 | 5% | ||
hykwf678233 | 0 | 19,910,090,028 | 8.86% | ||
liambu | 0 | 691,910,282 | 12.5% | ||
poppie-schultz | 0 | 117,908,652 | 10% | ||
cn-neoxag | 0 | 200,277,719 | 21.76% | ||
cn-actnearn | 0 | 19,501,853 | 5% | ||
zeasar | 0 | 47,873,798 | 25% | ||
peterschiff | 0 | 683,344,014 | 6.48% | ||
ericetchen | 0 | 13,942,120,828 | 8.86% | ||
arm27312 | 0 | 48,189,353 | 50% | ||
trevorlp97 | 0 | 12,936,692,488 | 8.86% | ||
luvlylady | 0 | 8,610,568,745 | 15% | ||
smf37 | 0 | 6,643,729 | 19% | ||
cnvote | 0 | 256,790,102,549 | 50% | ||
steem.consultant | 0 | 1,421,720,094 | 1.29% | ||
annzhao | 0 | 1,110,361,081 | 8.86% | ||
steemstem-trig | 0 | 2,333,091,168 | 30% | ||
bilpcoinrecords | 0 | 1,216,245,217 | 2% | ||
c0mrade | 0 | 257,386,114 | 50% | ||
thebilpcointrain | 0 | 58,894,503 | 1% | ||
bilpcoin.pay | 0 | 196,269,979 | 1% | ||
cn-trail | 0 | 3,834,595,508 | 8.86% | ||
cnbuddy-reward | 0 | 40,892,568,992 | 7.78% | ||
chris55 | 0 | 17,872,200,921 | 8.86% | ||
lusce | 0 | 5,769,758,603 | 10% | ||
steemlondon | 0 | 1,211,310,192 | 3% | ||
amapiano | 0 | 95,158,870 | 25% | ||
yourtop3 | 0 | 3,336,386,030 | 2.59% |
你那里天气如何?来一份新手村小卖部的美食吧!@teamcn-shop感谢支持。
author | cnbuddy |
---|---|
permlink | re-cheva-excelvlookup-dmj1jvqali-20191109t054329857z |
category | cn |
json_metadata | "" |
created | 2019-11-09 05:43:30 |
last_update | 2019-11-09 05:43:30 |
depth | 1 |
children | 0 |
last_payout | 2019-11-16 05:43:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 39 |
author_reputation | -1,449,160,991,441 |
root_title | 用excel的vlookup函数提高工作效率。 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 92,331,886 |
net_rshares | 0 |
JCAR 11월 구독보팅입니다. 11월 둘째 주말 즐거운 시간 되세요.
author | jsquare |
---|---|
permlink | re-excelvlookup-dmj1jvqali-20191109t054127z |
category | cn |
json_metadata | "{"app": "rewarding/0.1.5"}" |
created | 2019-11-09 05:41:30 |
last_update | 2019-11-09 05:41:30 |
depth | 1 |
children | 0 |
last_payout | 2019-11-16 05:41:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 45 |
author_reputation | 81,350,685,034,901 |
root_title | 用excel的vlookup函数提高工作效率。 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 92,331,849 |
net_rshares | 0 |
<div class='text-justify'> <div class='pull-left'> <center> <br /> <img width='200' src='https://res.cloudinary.com/drrz8xekm/image/upload/v1553698283/weenlqbrqvvczjy6dayw.jpg'> </center> <br/> </div> This post has been voted on by the **SteemSTEM curation team** and voting trail. It is elligible for support from @curie and @minnowbooster.<br /> If you appreciate the work we are doing, then consider supporting our witness [@stem.witness](https://steemconnect.com/sign/account_witness_vote?approve=1&witness=stem.witness). Additional witness support to the [curie witness](https://steemconnect.com/sign/account_witness_vote?approve=1&witness=curie) would be appreciated as well.<br /> For additional information please join us on the [SteemSTEM discord]( https://discord.gg/BPARaqn) and to get to know the rest of the community!<br /> Please consider using the <a href='https://www.steemstem.io'>steemstem.io</a> app and/or including @steemstem in the list of beneficiaries of this post. This could yield a stronger support from SteemSTEM.
author | steemstem |
---|---|
permlink | re-cheva-excelvlookup-dmj1jvqali-20191111t033924034z |
category | cn |
json_metadata | {"app":"steemstem-bot"} |
created | 2019-11-11 03:39:27 |
last_update | 2019-11-11 03:39:27 |
depth | 1 |
children | 0 |
last_payout | 2019-11-18 03:39:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,050 |
author_reputation | 262,017,435,115,313 |
root_title | 用excel的vlookup函数提高工作效率。 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 92,388,476 |
net_rshares | 0 |
感谢代理101.18SP 给team-cn! 由于你使用CN作为你的首标签,额外获得2%点赞! 你的帖子获得team-cn 10% 点赞!(如果不想看到这个回复,请回复“取消”)
author | team-cn |
---|---|
permlink | re-cheva-excelvlookup-dmj1jvqali-20191109t053936073z |
category | cn |
json_metadata | "{"app":"NBC bot"}" |
created | 2019-11-09 05:39:36 |
last_update | 2019-11-09 05:39:36 |
depth | 1 |
children | 0 |
last_payout | 2019-11-16 05:39:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 89 |
author_reputation | 40,441,390,621,673 |
root_title | 用excel的vlookup函数提高工作效率。 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 92,331,825 |
net_rshares | 0 |
你好鸭,cheva! @cnbuddy给您叫了一份外卖! 由 @mia-cc 斤斤 迎着闪电 被浣熊拖着 给您送来 **新手村三宝 瓜子 汽水 小板凳** <br> .jpg) 吃饱了吗?跟我猜拳吧! **石头,剪刀,布~** 如果您对我的服务满意,请不要吝啬您的点赞~ @onepagex
author | teamcn-shop |
---|---|
permlink | re-cheva-excelvlookup-dmj1jvqali-20191109t054329857z |
category | cn |
json_metadata | "{"app":"teamcn-shop bot/1.0"}" |
created | 2019-11-09 05:43:36 |
last_update | 2019-11-09 05:43:36 |
depth | 1 |
children | 0 |
last_payout | 2019-11-16 05:43:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 278 |
author_reputation | 11,393,746,055,281 |
root_title | 用excel的vlookup函数提高工作效率。 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 92,331,889 |
net_rshares | 0 |