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 moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hello Friends,
Can you help me with the below calculation,
I want to create a new column "B" based on existing column "A".
| A | B |
| Desktop | 4 |
| Desktop | 4 |
| Desktop | 4 |
| Desktop | 4 |
| Laptop | 2 |
| Laptop | 2 |
| IPAD | 3 |
| IPAD | 3 |
| IPAD | 3 |
Solved! Go to Solution.
Hi @Gopinath_iyer ,
It seems that you want to calculate the row count of each A and each Country, right?
Please try:
B = CALCULATE(COUNTROWS('Table'),ALLEXCEPT('Table','Table'[A],'Table'[Country]))
Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Gopinath_iyer ,
It seems that you want to calculate the row count of each A and each Country, right?
Please try:
B = CALCULATE(COUNTROWS('Table'),ALLEXCEPT('Table','Table'[A],'Table'[Country]))
Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Gopinath_iyer
Can you be more precise about what exactly you want?
Do you want just a duplicate of the A column?
You can do that by just referencing the column in Calculated Column like this:
B = 'Table'[A]
I want to create column B with count of attributes in column A respectively.
E.g Column A has 4 rows with "Desktop" so column B should 4 and
Column A has 2 rows for "Laptop" so B should be 2 and so on.
@Gopinath_iyer
I see, makes sense.
Here you go:
New B =
var currentGrouop = 'Table'[A]
return COUNTROWS(FILTER('Table', 'Table'[A] = currentGrouop))
Thanks a lot its working...but it missed the country filter...can you suggest?.
| A | Country | B |
| Desktop | US | 3 |
| Desktop | US | 3 |
| Desktop | US | 3 |
| Desktop | UK | 1 |
| Laptop | US | 1 |
| Laptop | UK | 1 |
| IPAD | UK | 2 |
| IPAD | UK | 2 |
| IPAD | US | 1 |
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 | |
| 29 | |
| 29 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 68 | |
| 45 | |
| 33 | |
| 24 | |
| 23 |