Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi, I'm having issues creating a measure that can filter vaules in 2 separate columns. I'm looking to calculate kidnapping rate for each type of alert. My original calculation doesn't seem to take into account the type of alert.
I've attached some screenshots of the fields i'm looking to filter. (Type of Alert) and (Incidents with Crew Kidnapped)
Would be eternally grateful for any help.
Solved! Go to Solution.
[# Alerts] = COUNTROWS( T ) // T being your table
[Kidnapping Rate] =
DIVIDE(
CALCULATE(
[# Alerts],
KEEPFILTERS(
// Names of columns should be
// as short as possible but
// still meaningful.
T[Incidents with Crew Kidnapped] = "YES"
)
),
[# Alerts]
)
I warn you against having one-table models and not following the star schema. Watch this: https://community.powerbi.com/t5/DAX-Commands-and-Tips/Why-one-table-models-will-produce-WRONG-NUMBE...
[# Alerts] = COUNTROWS( T ) // T being your table
[Kidnapping Rate] =
DIVIDE(
CALCULATE(
[# Alerts],
KEEPFILTERS(
// Names of columns should be
// as short as possible but
// still meaningful.
T[Incidents with Crew Kidnapped] = "YES"
)
),
[# Alerts]
)
I warn you against having one-table models and not following the star schema. Watch this: https://community.powerbi.com/t5/DAX-Commands-and-Tips/Why-one-table-models-will-produce-WRONG-NUMBE...
Thanks for your solution, it is very much appreciated. I shall take a look at the video to improve things.
First of all, from what you've shown you simply can't caculate this. You have to be able to link the two tables somehow. Currently, as it stands, this model is useless for the type of caclulation you want do perform.
Are these two tables just one table?
Sorry i forgot to metion that this is all part of one table.
User | Count |
---|---|
16 | |
15 | |
14 | |
12 | |
11 |
User | Count |
---|---|
19 | |
16 | |
14 | |
11 | |
9 |