1.自定义同环比公式

  • 模块
Function Tonghuanbi(x As Double, y As Double) As Double
Tonghuanbi = (x - y) / y
End Function
  • LAMBDA

=LAMBDA(x,y,(x-y)/y)