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 all. Me again.... I've been struggling with a measure formula for a few days building on from the last one.
I've looked at a few posts with similar problems but can't seem to sort the formula....
I'm trying to count using a measure, active contacts of a specific grade.
My active contacts measure (that works) is:
Solved! Go to Solution.
@Anonymous you mean you want the grade to be 200000001 OR 200000002? I assume it cannot be both at the same time ...
Also, the first argument of FILTER needs to be a table and you are passing a column.
Second, you are not using the AND operator correctly.
Anyway, you don't need to user the FILTER statement in that case. Maybe this will do :
My_Measure =
CALCULATE(
DISTINCTCOUNT('CE vwContact'[Rics_contactno]),
'CE vwContact'[Rics_LapsedDate]<=TODAY(),
'CE vwContact'[Rics_MemberGrade] IN {'200000001','200000002'}
)
Thank you so much! That sorted it. The only thing I had to chance was putting " instead of ' around the 200000001 numbers. Thank you!!
@Anonymous you mean you want the grade to be 200000001 OR 200000002? I assume it cannot be both at the same time ...
Also, the first argument of FILTER needs to be a table and you are passing a column.
Second, you are not using the AND operator correctly.
Anyway, you don't need to user the FILTER statement in that case. Maybe this will do :
My_Measure =
CALCULATE(
DISTINCTCOUNT('CE vwContact'[Rics_contactno]),
'CE vwContact'[Rics_LapsedDate]<=TODAY(),
'CE vwContact'[Rics_MemberGrade] IN {'200000001','200000002'}
)
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
15 | |
11 | |
11 | |
10 | |
10 |
User | Count |
---|---|
19 | |
14 | |
13 | |
11 | |
8 |