计算两个数字之间的值(Google 张)

Calculate values between two numbers (Google Sheets)

如果15是最小的数字,200是最大的数字,我需要用什么公式来定义一个乘法模式应用完成此乘法所需的 28 个值 table?

I would like to learn how to create this pattern to use, I tried it through percentages but I was not successful exactly because it had the minimum and the maximum, if it was only the minimum or only the maximum, just multiply it by the percentage.

在 A2 中尝试这个公式 =$A1+($A-$A)/29 然后向下拖动到 A29

如果您想将这些值粘贴到您需要执行的同一列中:

则公式为:

=ARRAYFORMULA(INDIRECT("A"&
 MAX(IF(A3:A<>"", ROW(A3:A), )))+SORT(ROW(INDIRECT("A1:A"&
 MAX(IF(A3:A<>"", ROW(A3:A), ))-2)), 1, 0)*(A1-INDIRECT("A"&
 MAX(IF(A3:A<>"", ROW(A3:A), ))))/(
 MAX(IF(A3:A<>"", ROW(A3:A), ))-1))