Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi all,
I have a chart like this:
On every string, there are one or more events. I can click on this chart - both to choose whole string or a single event. I would like to have a measure that will tell me how many events are there on a string, regardless if I click a whole string or a single event. For example, on string 1 I would expect the value to be 6.
I thought it could be like:
_howManyCleanings = CALCULATE(
COUNT(TableData[EventID]),
REMOVEFILTERS(TableData[StringID])
)
but this is not working - when I click string 1 it shows correctly value 6, but if I click on the event, the measure shows 1, instead of still 6.
How to fix this?
Thanks,
Joanna
Solved! Go to Solution.
Hi, @Kohrinn
something like below
if yes then try below measure
adjust table and column name
Measure =
CALCULATE(COUNT('Table'[event]),REMOVEFILTERS('Table'[event]))
my data look like below
I've already tried that, same result.
Hi, @Kohrinn
something like below
if yes then try below measure
adjust table and column name
Measure =
CALCULATE(COUNT('Table'[event]),REMOVEFILTERS('Table'[event]))
my data look like below
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
143 | |
80 | |
65 | |
52 | |
49 |
User | Count |
---|---|
212 | |
89 | |
79 | |
68 | |
60 |