Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
alec1982
Specialist II
Specialist II

how to get the second value of a filed to appear on a text box

Hi,

Anybody knows  how to get the second value of a filed to appear on a text box?

Thxs,

4 Replies
MayilVahanan

Hi,

     Try this,

     =SubField(Concat(distinct FieldName,',',2),',',2)

     Make sure that, atleast two values select in field..

     Hope it helps..

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
alec1982
Specialist II
Specialist II
Author

Thxs,

I have another question and wondering if you could help me.

I have (scroll text) text box. Attached is the sample

How can I display the values on a field(10 values) to rotate in this scroll text one after one?

Thxs,

nagaiank
Specialist III
Specialist III

If you set your MyText to

=If (GetSelectedCount(Field) <= 10,GetFieldSelections(Field,', ',10),Mid(GetFieldSelections(Field,', ',100),1,Index(GetFieldSelections(Field,', ',100),',',10)-1))

the first ten selected values will scroll in your scroll textbox.

Hope this helps.

alec1982
Specialist II
Specialist II
Author

Thxs so much..

What I have now is

='      Location = ' & MinString(NA_LOCATION) &
'      Total SF = '   & num(Sum({<[NA_LOCATION]={'Calgary'}>} [NA_Squae Feet]),'#,##0')  &
'      $PSF= ' & num(Sum({<[NA_LOCATION]={'Calgary'}>} [NA_$PSF]),'$#,##0') &
'      Lease Expiration = ' & Sum({<[NA_LOCATION]={'Calgary'}>} [NA_Lease Expiration])

and that will show the first value and its related data from the table.

Is there anyway i can show every value of that field to show up with its related data scrolling.

like the first value will scroll first with its related data and then the second..third and so on?