Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
Hello PBI friends
I have, probably simple, problem but I am stucked and going around like in rounabout road.
Have to produce column that will be based on appearance of the same data (for example from column 2) in another column ( for example column 3).
Example:
Product A can be sold in many countries. I have to know in how many countries it is sold? Desired solution is Apperas in #Country (green header)
Thanks, a lot. I am still learning so I hope once I will be able to help to someone.
Solved! Go to Solution.
Creation of the following column can help you with this situation.
Creation of the following column can help you with this situation.
I knew it - so simple
Thanks a lot.
You earned pizza - when you come to Croatia
Thank you,... For the free food😂.
In Power BI, you can achieve this by creating a new calculated column in your table that counts how many times a value from one column appears in another column. In your case, you want to count how many countries each product appears in. Here's how you can do it:
Open your Power BI report and go to the "Model" view.
In the "Fields" pane, select the table where you want to create the new calculated column.
Click on the "Modeling" tab in the top menu.
Click on "New Column."
In the formula bar that appears at the top, enter the following DAX formula:
Country Count = COUNTROWS( FILTER( YourTableName, YourTableName[Product] = EARLIER(YourTableName[Product]) ) )
Replace YourTableName with the actual name of your table and Product with the name of the column containing the product names.
This DAX formula creates a new column called "Country Count" that counts how many times each product appears in the same table based on the product name. It uses the COUNTROWS function along with the FILTER function to count the rows where the product name matches the current row's product name.
Now, you should see a new column in your table that shows the count of countries for each product. You can use this column in your visuals to see how many countries each product is sold in.
Thanks, your proposal is giving me how many times at all apears in some country (can be multiple times in one country)
Altought ...
"CountryCount=calculate(DistinctCOUNT('Table'[Country]), Filter('Table', 'Table'[Product] = EARLIER('Table'[Product])))" it is counting some country just once.
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
111 | |
105 | |
105 | |
88 | |
61 |
User | Count |
---|---|
165 | |
133 | |
132 | |
95 | |
86 |