Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Using GetCurrentSelections with textbox

Hello,

I am trying to create a textbox that displays my current (single) selection using the following expression:

=getcurrentselections (chr(13), chr(13), chr(13), 10 )

The problem that I have is that the output also dispays the column name of the selection. How can I remove this?

Thanks,

Robert

1 Solution

Accepted Solutions
Not applicable
Author

Hi,

Use getfieldselections(ProjectName)

Regards

View solution in original post

7 Replies
Not applicable
Author

can you please let me know what the output look like?

regards,

MT

Not applicable
Author

With the expression mentioned above, the output is:

Column_name

Currently_selected_value

What I want is to remove the column name, so that only the selected value is displayed.

Not applicable
Author

Hi,

i dnt think it makes sense to remove column name....in case of multiple selections, how do u know what is selected in which field ?

what exactly u trying to achieve?

Regards

Not applicable
Author

I want to create a Project report, and I want the report to dynamically display the project name as a header to the report. What I then do is select the project I want the report to display.

Not applicable
Author

Hi,

Use getfieldselections(ProjectName)

Regards

Not applicable
Author

you can achieve this with subfield around the getfieldselections

regards

Not applicable
Author

Try to put this in a text box:

=replace(subfield(getcurrentselections ( Month ),':',2),',',chr(10))

Regards

MC