我正在尝试创建一个电子表格,使我能够确定一个解决方案,该解决方案通常可以识别missing products
因盗窃或人为错误而启动。
有两个静态数据。
1)每件产品有18个单位。
2)18个单位遵循相同的规模运行1 * 5.5; 2 * 6; 2 * 6.5; 3 * 7; 3 * 7.5; 2 * 8; 2 * 9; 1 * 10。
我可以访问已售出的尺寸以及剩余的尺寸。例如,产品A售出14个单位,但现有的只有3个1 * 6; 1 * 8; 1 * 9,显然1缺失。
我想通过引用销售的数据来识别可能缺少的尺寸,以及现有数量到尺寸运行。我怎么能做到这一点?
答案 0 :(得分:0)
您更喜欢宏或excel公式吗? (您的大小的单元格= X)
Find position of * = FIND("*";X)
Find position of space =FIND(" ";X)
First number (i) = LEFT(X;position of * -1)
Second number (i) = MID(X;position of * + 1 ;(position of space - position of * )-1)
删除已有的信息X = RIGHT(X;空格-1的位置) 重复(对于i = n)
您无法检查第二个数字的差异是否与第一个数字一致。
Difference Second number = ( Second number (n+1) - Second number (n) )
relative difference = Difference Second number / First number (n)
如果相对差异一致,则没有问题。否则你有偏差。