Forum Discussion
Hi Koemets,
I can't think of a particular reason off-hand why it wouldn't return the correct order, but if you want to post your code, I'd be happy to look and see if anything jumps out
Dim objMembers As List(Of Member) = Nothing
If Not masterCL Is Nothing Then
objMembers = (From memberInfo In masterCL Order By memberInfo.Member.Name Ascending Select memberInfo.Member).ToList()
End If
- Mike_Sabourin3 years agoContributor II
I've never tried it in an XFBR before, but it should be doable. However, the methodology might have to be changed. I think you might have to cycle through the alphabetical list you created in this and add it to a text string to return the order back to the cube view (result being like A#XXX111, A#XXX112, etc). If I get a chance, I'll play around with it and see if I can get it to work.
- Koemets3 years agoContributor
I thought about stripping the leading letters (they are all the same) and sort it by resulting integer.
Thank you.
Related Content
- 4 months ago
- 10 months ago