This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
Hi,
I try to Countif how many times the numbers of value's in one colum exist, if the same value exits in an other colum..
Any one who can help?
Thanks Ellen
Solved! Go to Solution.
Hi @EllenBakker ,
I created a sample pbix file(see attachment), please check whether that is what you want.
1. Create a measure as below to get the number of repetitions of name1
Countif = CALCULATE(COUNT('Table'[name1]),ALLEXCEPT('Table','Table'[name1]))
2. Create a measure as below to judge if the same value for name1 exist in name2
name1 exist in name2? =
VAR _tab =
VALUES ( 'Table'[name2] )
RETURN
IF ( SELECTEDVALUE ( 'Table'[name1] ) IN _tab, 1, 0 )
If the above one can't help you get your expected result, please provide some sample data with Text format and your expected result with calculation logic and special example explanation. Thank you.
Best Regards
Hi @EllenBakker ,
I created a sample pbix file(see attachment), please check whether that is what you want.
1. Create a measure as below to get the number of repetitions of name1
Countif = CALCULATE(COUNT('Table'[name1]),ALLEXCEPT('Table','Table'[name1]))
2. Create a measure as below to judge if the same value for name1 exist in name2
name1 exist in name2? =
VAR _tab =
VALUES ( 'Table'[name2] )
RETURN
IF ( SELECTEDVALUE ( 'Table'[name1] ) IN _tab, 1, 0 )
If the above one can't help you get your expected result, please provide some sample data with Text format and your expected result with calculation logic and special example explanation. Thank you.
Best Regards
Please provide some mock data along with expected result, so someone can suggest a specific solution.
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 36 | |
| 33 | |
| 31 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 66 | |
| 55 | |
| 31 | |
| 26 | |
| 23 |