Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have to display the Selected Alternate state value in List box in Text box.
For example:
Week1 week2(Alternate state of week1)
1 1
2 2
3 3
4 4
I have Selected 3 in Week2 list box and want to display it on text box, how to do?
Thanks
Manish
Try this:
=Concat(DISTINCT {NameOfYourAlternateStateHere} [Week 1], ', ')
Try this:
=Concat(DISTINCT {NameOfYourAlternateStateHere} [Week 1], ', ')
Thanks Sunny, it worked
Awesome