Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 |
---|---|
75 | |
74 | |
44 | |
31 | |
27 |
User | Count |
---|---|
99 | |
89 | |
52 | |
48 | |
46 |