Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
satishsure
Contributor
Contributor

if loop to set analysis

vEndvalue is variable which get 1,2,3,4,5,6 on selection. These are fields to display in chart :

Name,[GState],[GCountry],[Sales Area],[Sales Region],[Seller Name]). I need to write set analysis for the below expression



if ('$(vEndvalue)' = '' ,Name,Pick(Match('$(vEndvalue)',1,2,3,4,5,6),Name,[GState],[GCountry],[Sales Area],[Sales Region],[Seller Name]))

1 Reply
sunny_talwar

Not sure, but may be this:

Pick(Alt($(vEndvalue), 1), 'Name', 'GState', 'GCountry', 'Sales Area', 'Sales Region', 'Seller Name')