Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
uacg0009
Partner - Specialist
Partner - Specialist

How to get a field value which is unselected, unique and corresponding with current selections

Hi all,

I have data like:

Get Unselected1.PNG.png

Now I select Year=2015, Snapshot=Current, like:

Get Unselected2.PNG.png

In this case, how can I get the value of Week, I just want to get the "Week01" value using some functions, but I can't select Week, but the value of the Week is unique I think.

I try to use getfieldselection, it doesn't work.

So do you have any idea to solve that?

Thanks!

Aiolos Zhao

1 Solution

Accepted Solutions
SergeyMak
Partner Ambassador
Partner Ambassador

Or if it's several values you can use

=Concat(Week,',') to get the list of values

or MaxString(Week) or MinString(Week)

it depends on your requirements

Regards,
Sergey

View solution in original post

5 Replies
SergeyMak
Partner Ambassador
Partner Ambassador

Hi,

Just use Only(Week) if it's one value.

Regards,

Sergey

PFA

Regards,
Sergey
SergeyMak
Partner Ambassador
Partner Ambassador

Or if it's several values you can use

=Concat(Week,',') to get the list of values

or MaxString(Week) or MinString(Week)

it depends on your requirements

Regards,
Sergey
uacg0009
Partner - Specialist
Partner - Specialist
Author

Thx for reply so quickly!

jagan
Luminary Alumni
Luminary Alumni

Hi,

Use Concat(Week,',')  to get all possible weeks values.


If you only one possible value then you can try using Only(), MinString() or MaxString().

Regards,

Jagan.

uacg0009
Partner - Specialist
Partner - Specialist
Author

Thx for reply so quickly!