Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
zxl1031
Helper I
Helper I

Create a table to include measures

Hello everyone,

I have 7 measures and I want to visualize them in a bar chart . X-axis is the measure name (sorted from "0%", "<5%", "5%-10%" etc.), Y-axis is the caulcated value of each measure. 

So I created a table using below DAX, bold red is each individual measure

MeasurementTable =
UNION(
ROW("cat",">50%", "count_vin",[>50%],"groupid",1),
ROW("cat","30%-40%", "count_vin", [30%-40%],"groupid",2),
ROW("cat","20%-30%", "count_vin",[20%-30%],"groupid",3),
ROW("cat","10%-20%", "count_vin",[10%-20%],"groupid",4),
ROW("cat","5%-10%", "count_vin",[5%-10%],"groupid",5),
ROW("cat","<5%", "count_vin",[<5%],"groupid",6),
ROW("cat","0%", "count_vin",[0%],"groupid",7)
)

 

However, as you can see in below picuture, the value of each measure in this MeasureTable is different from individual measure. And it seems in MeasureTable, all filters are not applied at all. 

 

Can anyone help explain why and a possible solution?

 

zxl1031_0-1610062881617.png

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@zxl1031 , In the second table filter will not apply. As New table will not tabke slicer value.

 

Instead of so many measures try to use the approch of dynamic segmentation

https://www.youtube.com/watch?v=CuczXPj0N-k

 

Create an independent table, With ranges , create new measures with a row context.

View solution in original post

3 REPLIES 3
v-shex-msft
Community Support
Community Support

HI @zxl1031,

Did these suggestions help with your scenario? If not, you can feel free to post here with detailed information.

How to Get Your Question Answered Quickly  

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.
v-shex-msft
Community Support
Community Support

Hi @zxl1031,

Current power bi does not support create dynamic calculated tables/columns based on filters or slicers. Please write measure expressions and use them with category to instead.

Category =
UNION (
    ROW ( "cat", ">50%", "groupid", 1 ),
    ROW ( "cat", "30%-40%", "groupid", 2 ),
    ROW ( "cat", "20%-30%", "groupid", 3 ),
    ROW ( "cat", "10%-20%", "groupid", 4 ),
    ROW ( "cat", "5%-10%", "groupid", 5 ),
    ROW ( "cat", "<5%", "groupid", 6 ),
    ROW ( "cat", "0%", "groupid", 7 )
)
Measure =
VAR selection =
    SELECTEDVALUE ( Category[cat] )
RETURN
    SWITCH (
        selection,
        ">50%", [>50%],
        "30%-40%", [30%-40%],
        "20%-30%", [20%-30%],
        "10%-20%", [10%-20%],
        "5%-10%", [5%-10%],
        "<5%", [<5%],
        "0%", [0%]
    )

Notice: the data level of power bi.
Database(external) -> query table(query, custom function, query parameters) -> data model table(table, calculate column/table) -> data view with virtual tables(measure, visual, filter, slicer)

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.
amitchandak
Super User
Super User

@zxl1031 , In the second table filter will not apply. As New table will not tabke slicer value.

 

Instead of so many measures try to use the approch of dynamic segmentation

https://www.youtube.com/watch?v=CuczXPj0N-k

 

Create an independent table, With ranges , create new measures with a row context.

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

Check out the August 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

Find out what's new and trending in the Fabric Community.