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,
I am trying to create a Measure that will count only rows from a table if one of the columns begins with the word "MAIN*".
what I currently have and it is not working is:
Shipped Mains TEST =
CALCULATE(COUNTROWS('Activity'), 'Activity'[sku] = "MAIN*")
I could not find a topic that clearly describes what are the wildcards that can be used in Power BI and how to use them exactly.
Solved! Go to Solution.
@Anonymous , Try like
Shipped Mains TEST =
CALCULATE(COUNTROWS(filter('Activity' , left('Activity'[sku],4) = "MAIN") ))
or
Shipped Mains TEST =
CALCULATE(COUNTROWS(filter('Activity' , Search("MAIN", [sku] ,,0) =1 ) ))
@amitchandak ,
Thank you, I have used:
CALCULATE(COUNTROWS(filter('Activity' , Search("MAIN", [sku] ,,0) =1 ) ))
and it works just fine!
@Anonymous , Try like
Shipped Mains TEST =
CALCULATE(COUNTROWS(filter('Activity' , left('Activity'[sku],4) = "MAIN") ))
or
Shipped Mains TEST =
CALCULATE(COUNTROWS(filter('Activity' , Search("MAIN", [sku] ,,0) =1 ) ))
I am trying to create a Measure that will count only rows from a table if one of the columns begins with the word "Graduate" or " Foundation". I tried to use the below measure to calculate the count of Graduate it works .May I know the wildcard to include columns begins with the word "Graduate" or " Foundation".
User | Count |
---|---|
86 | |
85 | |
35 | |
35 | |
35 |
User | Count |
---|---|
94 | |
79 | |
63 | |
55 | |
52 |