我正在尝试根据表中的标准总数来计算评分阈值。但由于某种原因,我无法获得变量的值。我尝试了 Qliksense 手册中的每种语法组合。您能否帮助我通过评估每个变量的表达式并描述评级映射表来获得评级映射表中的实际数字?
[Data Structure]:
LOAD [Resource],
[Criteria],
[Sub-Criteria],
[Weight],
[Value],
([Weight]*[Value]) As [Score]
FROM [lib://econtent dashboard/Final weighted criteria 7-20-15.xlsm]
(ooxml, embedded labels, table is [Data Structure]);
LET vNumberofCriteria=$(=Count(distinct [Criteria]));
LET vThresholds=$(=vNumberofCriteria*100);
LET vTr1=$(#vThresholds);
LET vTr2=$(=2*$(#vTr1));
LET vTr3=$(=3*$(#vTr1));
LET vTr4=$(=4*$(#vTr1));
LET vTr5=$(=5*$(#vTr1));
[Rating Mapping]:
Load * INLINE [
Treshhold, Rating, Image Location
0, NA, http://localhost:4848/content/default/notavailable.png
$(#vTr1), Unsatisfactory, http://localhost:4848/content/default/unsatisfactory.png
$(#vTr2), Marginal, http://localhost:4848/content/default/marginal.png
$(#vTr3), Good, http://localhost:4848/content/default/good.png
$(#vTr4), Satisfactory, http://localhost:4848/content/default/satisfactory.png
$(#vTr5), Superior, http://localhost:4848/content/default/superior.png
];
谢谢