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: 
oehizele
Partner - Contributor
Partner - Contributor

How do i rearrange my valuelist

=ValueList(
'1',
'3',
'',
'4',
'6',
'5'
)

 

i want my pick(match(valuelist(...),),) to follow that format above but it keeps rearranging to '',1,3,4,5,6 on my report.How do i default it to the above placement?

1 Solution

Accepted Solutions
fosuzuki
Partner - Specialist III
Partner - Specialist III

Hi

Go to the Chart Properties > Sorting > expand the valuelist dimension, choose custom sorting, sort by expression, and add this expression:

=match(ValueList( '1', '3', '', '4', '6', '5' ), '1', '3', '', '4', '6', '5' )

View solution in original post

1 Reply
fosuzuki
Partner - Specialist III
Partner - Specialist III

Hi

Go to the Chart Properties > Sorting > expand the valuelist dimension, choose custom sorting, sort by expression, and add this expression:

=match(ValueList( '1', '3', '', '4', '6', '5' ), '1', '3', '', '4', '6', '5' )