This content has been marked as final.
Show 3 replies
-
Re: the list box to show A B C D E ect
chand S Feb 14, 2013 11:14 AM (in response to Josephinet Tedesco)How you are loading these letters. Are they coming from some table or file.
To resolve this you can have an Inline load at the begining of the script and that should resolve your problem.
Load * Inline [
Yourfieldname
A,
B,
C,
D,
E];
-
Re: the list box to show A B C D E ect
Shankar Kalyanam Feb 14, 2013 11:24 AM (in response to Josephinet Tedesco)Instead of Changing the script and adding inline table, we can create a ListBox with an Expression
=Left(ITEM_NAME, 1). This would generate a listbox with single unique characters according to your item name.
-
Re: the list box to show A B C D E ect
Josephinet Tedesco Feb 14, 2013 6:10 PM (in response to Shankar Kalyanam)THank you this was very very easy to do and exactly what I wanted!
Jo
-