需要有关 Excel vlookup 的帮助
=IF(N101<>"",ROUND(VLOOKUP($N101,$I$30:$U$39,12,FALSE)/(1-(U$96+U$98)),0),0)
这是电子表格中当前返回错误数据的 VLOOKUP。这不是我写的,是我来公司之前在电子表格上写的。
我想要发生的事情是查找 $N101 中的值,然后我希望它找到从 i30 到 i40 相同的行,取 ((k30-j30/)/(1-(U$96+U$98) 中的内容) ) 当我说 k30 时,我实际上指的是 k30-k40,具体取决于比赛。
这确实对我有帮助
=IF(N101<>"",ROUND(VLOOKUP($N101,$I$30:$U$39,12,FALSE)/(1-(U$96+U$98)),0),0)
That is the current VLOOKUP in the spreadsheet that is returning the wrong data. I didnt write it, it was on a spreadsheet before i came to the company.
What I want to happen is look up the value in $N101 then i want it to find the row that is the same from i30 to i40 take whats in ((k30-j30/)/(1-(U$96+U$98))
when i say k30 i actually mean k30-k40 depending on the match.
This would really help me out
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试
=IF(N101<>"",ROUND(VLOOKUP($N101,$I$30:$U$39,#COL,FALSE)/(1-(U$96+U$98)),0), 0)
其中 #COL 是与包含 K$30-J$30 的结果值(例如)的列相对应的整数。
Try
=IF(N101<>"",ROUND(VLOOKUP($N101,$I$30:$U$39,#COL,FALSE)/(1-(U$96+U$98)),0),0)
where #COL is the integer that corresponds to the column containing the resulting value from K$30-J$30 (for example).
你说 i30 到 i 40 但你提到了 I30 到 U39。你可能想改变这一点。
如果您的意思是当您将相同的公式放在下面的单元格上时,那么当您拖动它时,您会自动获得它们。请检查 j30,如果您想始终使用 J30,您可能需要赚 j$30$。
我还建议单独检查每个公式,然后将其组合起来。
you say i30 to i 40 but you have mentioned I30 to U39. you might want to change that.
if you mean when you put same formula on below cell then, when you drag this you'll get them automatically. Please check j30, you might want to make j$30$ if you want to always use J30.
I would also suggest checking each of the formula separately and then combine it.