Forum Discussion

rakeshb's avatar
rakeshb
Frequent Visitor
8 years ago
Solved

Grouping the measures

Hello,   I came across a scenario in which I need to assign every user with the subscription packages.  For example,  User Channel       Ram Star sports       Kiran star movies ...
  • Anonymous's avatar
    Anonymous
    8 years ago

    Not sure if it could help. If you don't have much package list, you can try to get a following Power Bi report.

     

    Use an individual sheets to store packages info

     

    Load the user and package sheets into Power BI and create a column to find out user-package mapping

     

    BelongsTo = IF(CONTAINS(package,package[package1],User[Channel]),"Package1",IF(CONTAINS(package,package[package2],User[Channel]),"Package2",IF(CONTAINS(package,package[package3],User[Channel]),"Package3")))

     

     

    After that you will be get a report to show package information.