Hi guys,
I'm writing here to try to get a little support.
While developping, I have to get the groups of the current user using the ME of JEDOX WEB.
I have to simulate the "ctrl + shift + enter" in A1:A39 (for exemple) on the formula "=USERGROUPS()". When testing on JEDOX WEB it works (as it should), but I have to admit I'm not able to implement it on ME.
For now I have tryed :
Nothing works. (I guess it's normal for the last 2 since no formulaArray seems to be implemented according to the doc ?!)
Well, thanks for help
Ps : is it possible to fetch simply the results of the usergroups() in a $var or do we have to write it in cells then get it back (looping...)
I'm writing here to try to get a little support.
While developping, I have to get the groups of the current user using the ME of JEDOX WEB.
I have to simulate the "ctrl + shift + enter" in A1:A39 (for exemple) on the formula "=USERGROUPS()". When testing on JEDOX WEB it works (as it should), but I have to admit I'm not able to implement it on ME.
For now I have tryed :
Source Code
- activesheet()->range('A1:A39')->value='=USERGROUPS()';
- activesheet()->range('A1:A39')->value='{=USERGROUPS()}';
- activesheet()->range('A1:A39')->formula='=USERGROUPS()';
- activesheet()->range('A1:A39')->formula='{=USERGROUPS()}';
- activesheet()->range('A1:A39')->formulaArray='=USERGROUPS()';
- activesheet()->range('A1:A39')->formulaArray='{=USERGROUPS()}';
Nothing works. (I guess it's normal for the last 2 since no formulaArray seems to be implemented according to the doc ?!)
Well, thanks for help
Ps : is it possible to fetch simply the results of the usergroups() in a $var or do we have to write it in cells then get it back (looping...)