SPSS 使用一个单元格的值调用另一个单元格
下面是一些数据:
Test Day1 Day2 Score
A 1 2 100
B 1 3 62
C 3 4 90
D 2 4 20
E 4 5 80
我试图从“day”和“day2”列中获取值,并使用它们来选择列分数的行号。例如,对于测试 AI 希望找到 100 和 62 的总和,因为这是分数的第一行和第二行的值。测试 BI 希望求出 100、62 和 90 的总和。 有人对如何做到这一点有任何想法吗?我想在 Excel 中使用类似于间接函数的东西?谢谢
Below is some data:
Test Day1 Day2 Score
A 1 2 100
B 1 3 62
C 3 4 90
D 2 4 20
E 4 5 80
I am trying to take the values from column 'day' and 'day2' and use them to select the row number for the column score. For example for Test A I would like to find the sum of 100 and 62 because that is the values of the first and second rows of score. Test B I would like to find the sum of 100, 62 and 90.
Does anyone have any ideas on how to go about doing this? I am looking to use something similar to the indirect function in Excel? Thank You
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
诀窍是将变量“Score”转换为一行。无法想出一种简单的方法来避免 SAVE/GET - 改进的空间。
结果:
The trick is to convert variable "Score" as a row. Could not think of an easy way how to avoid SAVE/GET - room for improvements.
The result: