I've set up an Active Form that I have published through TM1 Web. I have the original TM1RPTROW formula as follows:
Code: Select all
=TM1RPTROW($B$9,"server:Global Orgstructure","n-level","","Code and Name",0)
Code: Select all
="{TM1FILTERBYLEVEL({DESCENDANTS([Global Orgstructure].[4D])},0)}"
Code: Select all
=TM1RPTROW($B$9,"server:Global Orgstructure","n-level","","Code and Name",0,$C$14)
However, when I try to make the MDX dynamic, so instead of hard-coding 4D I reference another cell that evaluates to 4D, the TM1RPTROW formula breaks and I get no data appearing.
Dynamic MDX:
Code: Select all
="{TM1FILTERBYLEVEL({DESCENDANTS([Global Orgstructure].["&$C$13&"])},0)}"
I got it working earlier with the dynamic reference, and I'm fairly sure I haven't changed anything in the meantime that would cause it to break...