跳到主内容

搜索

搜索

Split Price

评论

1 条评论

  • Avatar
    Ian Cummings
    版主

    Under the "Transform" tab of the data source you can run an "OnProcessData" VB script to handle your conditional formatting.  Something along the lines below:

     

    If value = X Then
      value = Y
    Else
      value = Z
    End If
    

    Obviously you replace X/Y/Z with the relevant items as per your needs.

    0

请先登录再写评论。