Manually insert a comment above a rule
Posted: Thu Mar 21, 2019 12:58 pm
Hi guys,
In this cube, I have two measures, 'Valor' and 'Comentário' (is comment in Portuguese).

I created one rule to dont supress Comentário column when the measure valor not is equal to zero.

But I need users to manually insert comments above the rule, where the value is equal to 'Comment here'.
How can I do this?
these images do not represent actual values about my customer.
In this cube, I have two measures, 'Valor' and 'Comentário' (is comment in Portuguese).

I created one rule to dont supress Comentário column when the measure valor not is equal to zero.
Code: Select all
FeedStrings;
SKIPCHECK;
['Comentário'] =S:if(['Valor']<>0,'Comment here',STET);
FEEDERS;
['Valor'] => ['Comentário'];

But I need users to manually insert comments above the rule, where the value is equal to 'Comment here'.
How can I do this?
these images do not represent actual values about my customer.