Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Summarize and refer Group Names to Order Numbers

Hey guys,   I'm searching for a measure because I can't do it in the advanced editor any more.   I have an older dataset where it worked by creating new columns in the advanced editor, which shou...
  • V-lianl-msft's avatar
    5 years ago

    Hi Anonymous ,

     

    Create a measure or column as a tooltip. See if it meets your needs.

    Measure = 
    CONCATENATEX(FILTER('Table',COUNTROWS(FILTER('Table',EARLIER('Table'[OrderNumber])='Table'[OrderNumber]))),'Table'[Team],"   ")
    
    column = CONCATENATEX(FILTER('Table','Table'[OrderNumber]=EARLIER('Table'[OrderNumber])),'Table'[Team]," ")

     

    Sample .pbix

    If the problem persists,could you share the sample pbix via cloud service like onedrive for business?(Please mask any sensitive data before uploading)

     

    Best Regards,
    Liang
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

  • V-lianl-msft's avatar
    V-lianl-msft
    5 years ago

    Hi Anonymous ,

     

    Try:

    team = RELATED('Group'[TeamName])
    
    s_t = CONCATENATEX(FILTER('BaseData','BaseData'[OrderNumber]=EARLIER('BaseData'[OrderNumber])),'BaseData'[Team]," ")

    Sample .pbix has been updated

     

    Best Regards,
    Liang
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.