Forum Discussion

Davy's avatar
Davy
Contributor
3 years ago

Use BusinessRule.DashboardStringFunction XFBR string rules to extract text out of V#Annotations?

Happy Labor Day!! How can I use BusinessRule.DashboardStringFunction, i.e. XFBR string business rules to extract text out of a datacell in cubeview that has users' text stored in V#Annotations? We ...
  • ChristianW's avatar
    3 years ago

    DataCellInfoUsingMemberScript doesn't have a DataCellAnnotation property, you need to go down one more step and select the DataCellEx property first:

    BRApi.Finance.Data.GetDataCellUsingMemberScript(si,"A#Explaination:U8#Comment:V#Annotations" ).DataCellEx.DataCellAnnotation

     

    And for a consistent result, you should specify the full POV to avoid problems.