The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hello team, I want to calculate
the length of the product description of only those products whose product color is NA.
Using ONLY string functions.
Thanks in advance.
Solved! Go to Solution.
Hi, @aditi11
Sample data:
Measure =
CALCULATE (
COUNT ( 'Table'[Product] ),
FILTER ( ALL ( 'Table' ), [ProductColor] = "NA" )
)
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @aditi11
Sample data:
Measure =
CALCULATE (
COUNT ( 'Table'[Product] ),
FILTER ( ALL ( 'Table' ), [ProductColor] = "NA" )
)
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
User | Count |
---|---|
28 | |
10 | |
8 | |
6 | |
5 |
User | Count |
---|---|
33 | |
13 | |
12 | |
9 | |
7 |