Davy
3 years agoContributor
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 ...
- 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.