on 2024 Mar 18 9:52 PM
Hi
I am trying to create a data action that get a calculation result if the year is the same as the year mention in certain dimension attribute (property)
what is the script i need to use?
i tried his one but have an error
IF YEAR([d/LegalDoc].[p/DateStart]) = [d/Date].[p/YEAR] THEN
DATA([d/Measures]="Changes")=3
ENDIF
Request clarification before answering.
Assuming Start Year if of type Integer.
IF INT(YEAR([d/Date])) = [d/LEGALDOC].[p/DateStart] THEN
DATA()=3
ENDIF
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 8 | |
| 5 | |
| 5 | |
| 4 | |
| 4 | |
| 3 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.