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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
a10703
Helper I
Helper I

Count comma in same cell

Hi guys,

I have one collumn with location

My collumn:

LOCATION
PORTUGAL
SPAIN
SPAIN
PORTUGAL
SPAIN
SPAIN
SPAIN
PORTUGAL
SPAIN
ITALY
ITALY
FRANCE
FRANCE


My measure to calculate the number of countries

MEASURELOCATION= calculate(counta('Table1'[Coluna1]),Filter(Table1,Table1[LOCATION]="SPAIN"))
 
The result is: 6
If i have the country and city in same cell it's possible to count?
 
tABLE LIKE:
LOCATION
PORTUGAL,LISBON
SPAIN,MADRID
SPAIN,BARCELONA
PORTUGAL,LISBON
SPAIN,SEVILHA
SPAIN,MADRID
SPAIN,BARCELONA
PORTUGAL,LISBON
SPAIN,BARCELONA
ITALY,ROMA
ITALY,ROMA
FRANCE,PARIS
FRANCE,PARIS

 

It's possible to count example: quantity of MADRID ?

MEASURELOCATION= calculate(counta('Table1'[Coluna1]),Filter(Table1,Table1[LOCATION]="MADRID"))

 Best regards,
 
 
 
1 ACCEPTED SOLUTION
rohit_singh
Solution Sage
Solution Sage

Hi @a10703,

The simplest way of doing it is to simply add the location column to the table and change the aggregation to "Count". This will give you a count of each city. 

 

rohit_singh_0-1654186413397.png

However, if your requirement is to specifically create measures, you can create one like below :
 

rohit_singh_1-1654186568720.png

Madrid Count =

COUNTROWS(
FILTER(
Locations,
CONTAINSSTRING(Locations[LOCATION], "MADRID")
)
)

You can modify this measure as per your requirement. Currently it is specific for Madrid but you can have a single measure to compute counts of each location as well.

Kind regards,

Rohit


Please mark this answer as the solution if it resolves your issue.
Appreciate your kudos! 🙂

View solution in original post

3 REPLIES 3
v-kkf-msft
Community Support
Community Support

Hi @a10703 ,

 

Please try the measure.

 

MEASURELOCATION = 
CALCULATE (
    COUNTROWS ( Table1 ),
    FILTER ( Table1, SEARCH ( "MADRID", Table1[LOCATION], 1, BLANK () ) > 0 )
)

vkkfmsft_0-1654666148481.png

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Hey @v-kkf-msft ,

I need to count only by line not to all example 

In this case i need measure for madrid and other for spain because in the same cell i can have more than 1: example: SPAIN,MADRID,BARCELONA,MADRID 

a10703_0-1656954539575.png

Best regards and thanks for help

 

 

rohit_singh
Solution Sage
Solution Sage

Hi @a10703,

The simplest way of doing it is to simply add the location column to the table and change the aggregation to "Count". This will give you a count of each city. 

 

rohit_singh_0-1654186413397.png

However, if your requirement is to specifically create measures, you can create one like below :
 

rohit_singh_1-1654186568720.png

Madrid Count =

COUNTROWS(
FILTER(
Locations,
CONTAINSSTRING(Locations[LOCATION], "MADRID")
)
)

You can modify this measure as per your requirement. Currently it is specific for Madrid but you can have a single measure to compute counts of each location as well.

Kind regards,

Rohit


Please mark this answer as the solution if it resolves your issue.
Appreciate your kudos! 🙂

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.