Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Plz find the attached example .
Thanks!!
Maybe like this: Using Alternate States to Select Multiple Values in a List Box with Different Attributes
Is it possible to merge the two "Sizes" into a single field (in your script)?
A list box always references a single Field for its main display.
Peter
No ..cannt merge two sizes into single(in script..)
Because they refer to two different sets of products or something like that? Can you move those sizes out of the original tables to a common location like a link table?
Sorry about making guesses, but without a data model there is not enough info for us to solve this...
Peter
Thanks Peter..
I guess you can load the table twice. In first load take only one size field and in other load take the other size field and use Concatenate between them. Then in frontend apply sor order on numeric values to achieve what you want.
Load
[Size1] as Size
From
Table.xls;
Cancatenate
Load
[Size2] as Size
From
Table.xls;
This will merge the valus into one common field name Size and then you can use this field in your front end chart and apply the Numeric sort order form the Sort Tab in the properties of your chart.
Hope it Helped
I guess you can load the table twice. In first load take only one size field and in other load take the other size field and use Concatenate between them. Then in frontend apply sor order on numeric values to achieve what you want.
Load
[Size1] as Size
From
Table.xls;
Cancatenate
Load
[Size2] as Size
From
Table.xls;
This will merge the valus into one common field name Size and then you can use this field in your front end chart and apply the Numeric sort order form the Sort Tab in the properties of your chart.
Please see the Attachment.
Hope it Helped