Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Am using expression in the sort tab to sort my items in dimension but not working. what do I do?
My sort script:
=match([item text]),
'Cupboards',
'Chairs','Building',
'PEE','Buriet',
,'Isle','JV'
,'Plastics',
'Desktop',
'System unit',
'Prints')
my sort script:
=match([item text]),
'Cupboards',
'Chairs','Building',
'PEE','Buriet',
,'Isle','JV'
,'Plastics',
'Desktop',
'System unit',
'Prints')
You have a parenthesis at the wrong spot, try this:
=Match([item text], 'Cupboards', 'Chairs', 'Building', 'PEE', 'Buriet', 'Isle', 'JV', 'Plastics', 'Desktop', 'System unit', 'Prints')
Remove the close bracket after item text..
Should be =match ([item text],.....)
Corrected. Didn't work, I had to try it had way because it wasn't working
I did that because the default wasn't working
Do you have the correct case for the values you have provided? Cupboards is different from CUPBOARDS is different from cupboards.
May use Lower() or Upper() or Capitalize() to normalize the data:
=Match(Capitalize([item text]), 'Cupboards', 'Chairs', 'Building', 'Pee', 'Buriet', 'Isle', 'Jv', 'Plastics', 'Desktop', 'System Unit', 'Prints')
Just wonder, do you have these match values in your dimension ?
and did you uncheck the other sort options for all other dimensions?
Yes I used
IF(Match([item text],
'Cupboards',
'Chairs','Building',
'PEE','Buriet',
,'Isle','JV'
,'Plastics',
'Desktop',
'System unit',
'Prints'), [item text] to pick specific items at my dimension
Looks close bracket missing in the end.. is that typo?
If yes..no idea..sorry..