Hi,
I am trying to build up a scorecard in design studio.
I am using a grid layout component and populating with text cells.
This is working well for column 0 and column 2 on the attached which displays the dimension code and aggregated value respectively.
However I would like to populate column 1 (col1) with the dimension text value (the Project Type Description relative to the code).
Can I easily do this using script? For col2 values I used the following script at the application level...
TEXT_SC_201.setText(DS_1.getDataAsStringExt("0AMOUNT","0WBS_ELEMT__0PS_PRJTYPE=01"));
TEXT_SC_202.setText(DS_1.getDataAsStringExt("0AMOUNT","0WBS_ELEMT__0PS_PRJTYPE=02"));
TEXT_SC_203.setText(DS_1.getDataAsStringExt("0AMOUNT","0WBS_ELEMT__0PS_PRJTYPE=03"));
TEXT_SC_204.setText(DS_1.getDataAsStringExt("0AMOUNT","0WBS_ELEMT__0PS_PRJTYPE=04"));
TEXT_SC_205.setText(DS_1.getDataAsStringExt("0AMOUNT","0WBS_ELEMT__0PS_PRJTYPE=05"));
Is there similar function I can use for col1. I cannot use getDataAsStringExt() as it requires a measure argument next.
Thanks, Matt.