Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi,
Is it possible for a slicer to accommodate a measure based on criteria e.g. the screenshot showed criteria for Negative Variance, Negative Variance with No Sales, etc?
//NT
Hi,
Which are the other crtieria you have?
Hi @tksnota ,
Assuming that the comments within your measure are derived by a logic, yes.
Let's assume you have a comment measure with something similar to this:
You'll need to create a disconnected slicer table that holds the same value. For example:
Next, you'll create a measure to determine which row you should keep:
Finally, add a filter on your table by filtering the measure for the value of 1.
To see it in action:
Do I need to create a separate table in the power query as the initial step?
Hi @tksnota ,
A separate disconnected table, yes, but it doesn't need to be creaetd in power query if you don't feel like it. You can select "New Table" and use the DATATABLE function to create your table:
Hi,
My Comment is different from the one you'd shown. I created a new table and when I followed your dax all returned to zero as shown.
Hi @tksnota
Seems you're still missing the slicer on the page. Can you also share what's inside your "Filter Flag" meaesure?
Hi,
I created the filter as shown.
I'm also sharing you the dax i created for the filter flag
Hi @tksnota ,
One thing to keep in mind is that your string inside your comment measure must match the string inside your flag measure:
Filter Flag =
VAR CurrentClassification = [Comment_drd]
VAR CurrentSelection = SELECTEDVALUE('Filter Comment'[Selection])
RETURN
IF(CurrentSelection = CurrentClassification, 1, 0)
Also, make sure that there's a selection from your dropdown for it to turn from 0 to 1.
I've linked a sample for you so you can get a feel of what to do:
tksnota_filter_measure.pbix
User | Count |
---|---|
64 | |
59 | |
47 | |
33 | |
32 |
User | Count |
---|---|
84 | |
75 | |
56 | |
50 | |
44 |