How to get data from source module using time range dimension
Hi,
Question please. How can I get data from source module using time range dimension to target module with model calendar time dimension?
Scenario: I need to get the beginning balance of FY18 from the module to be able to transfer it to the target module which calendar year starts with FY19. Please ss.
SYS Time
Source Module
Target Module
I tried this formula but I did not get the values.
thank you.
Best Answer
-
Hi,
Try using this formula on the line item "Beg Balance"
IF ITEM(Time) = Time.'Jan 19' THEN 'ATR - Actual - PY-Beg Balance'[SELECT: Time.'FY18'] ELSE 0
We should avoid hardcoding like I've done above, but let me know if this works and I will then explain how to remove the hardcoding
Regards,
Anirudh0
Answers
-
You need to use Lookup. See if this helps.
PY Year = PREVIOUS(ITEM(Time))
Thanks
Arun
0 -
hello, thank you for your responsed. I tried it but the values are not showing.0