Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I read a nice post created by Henric november last year. Mentioning:
"
"
I am stuck with actually creating the field containing the names of two other numeric fields. Thanks in advance.
see this if can help you......
Hi, create a field in the script? or in the object
Script:
Field1 & Field2 as Field1Field2;
in the objecto you have to create at as dimension
Good Luck
Fernando
You can try this
///////// =SUM(Quantity)&'-'&SUM(Sales) /////////////////////////////// (layout) or
///////// (Quantity)&'-'&(Sales) as concat_values /////////// script
/////////// SUM(Quantity)&'-'&SUM(Sales) as concat_wt_gb //////////// script ( creating a group by clause)
Data:
LOAD * INLINE [
Quantity, Sales
1, 20
2, 30
1, 15
];
SelectMeasure:
LOAD * INLINE [
FieldToAggregate
Quantity
Sales
];
Then, in front end:
see this if can help you......
Thanks for your time and effort solving my problem!