需要有关 Excel vlookup 的帮助

发布于 2024-11-10 18:44:06 字数 446 浏览 3 评论 0原文

=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

enter image description here

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

三生一梦 2024-11-17 18:44:06

尝试

=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).

堇年纸鸢 2024-11-17 18:44:06

VLOOKUP($N101,$I$30:$U$39,12,FALSE)

你说 i30 到 i 40 但你提到了 I30 到 U39。你可能想改变这一点。

k30 我实际上是指 k30-k40,具体取决于
在比赛中。

如果您的意思是当您将相同的公式放在下面的单元格上时,那么当您拖动它时,您会自动获得它们。请检查 j30,如果您想始终使用 J30,您可能需要赚 j$30$。

我还建议单独检查每个公式,然后将其组合起来。

VLOOKUP($N101,$I$30:$U$39,12,FALSE)

you say i30 to i 40 but you have mentioned I30 to U39. you might want to change that.

k30 i actually mean k30-k40 depending
on the match.

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文