Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
Anonymous
Not applicable

Count rows if a value from a columns begins with a specific word.

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.

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@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 ) ))

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

@amitchandak ,

Thank you, I have used:
CALCULATE(COUNTROWS(filter('Activity' , Search("MAIN", [sku] ,,0) =1 ) ))

and it works just fine!


amitchandak
Super User
Super User

@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".

Measure = Calculate(COUNTROWS(FILTER('Append3', left('Append3'[Course Name],8) = "Graduate")))

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.