Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello ! pls. help me compose formula in concatinating items
Fruits Description Desired New field
Apple red red/sweet/round
Apple sweet red/sweet/round
Apple round red/sweet/round
Banana yellow yellow/long/sweet/fresh
Banana long yellow/long/sweet/fresh
Banana sweet yellow/long/sweet/fresh
Banana fresh yellow/long/sweet/fresh
Orange sour sour
I'd like to concat all the item in description field of a certail Fruit...pls. see my desired outpu in red text.
Tks.
Attached with answer. Used Robert's file and made some changes to it. Calculations are done in the script(back-end)
Thanks
Check the attached QVW
Sorry, I took the liberty of assuming you only wanted to show the three rows in your table haha. Hope that works for you!
Attached with answer. Used Robert's file and made some changes to it. Calculations are done in the script(back-end)
Thanks
you can make a chart with
dimensions
- Fruits
- Description
expression
- concat(TOTAL <Fruits> Description, '/')
Hi,
one example:
tabFruits:
LOAD * INLINE [
Fruits, Description
Apple, red
Apple, sweet
Apple, round
Banana, yellow
Banana, long
Banana, sweet
Banana, fresh
Orange, sour
];
tabFruitSummary:
LOAD Distinct
Fruits,
Concat(Description, '/', RecNo()) as [Desired New field]
Resident tabFruits
Group By Fruits;
hope this helps
regards
Marco
Thank you, Ajay...it worked.