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 moreGet Fabric Certified for FREE during AI Skills Fest. This week only. Secure your voucher now.
I'm using a sharepoint db that has about 70 columns and around 3000 rows long. I need to count the number of times each row has an entry with the word "Verified".
I tried wtih Progress = COUNTAX('TABLE', "Verified")
I've been searching on here for an hour and no luck. Seems like this would have been very simple in excel.
| Site | Access | Directions | Equipment | Databases | Contractors | Progress |
| Site1 | Verified | Verified | Incomplete | Verified | N/A | 3 |
| Site2 | Verified | Verified | Verifed | N/A | N/A | 3 |
| Site3 | Verified | Verified | Verified | Verified | Verified | 5 |
Solved! Go to Solution.
Hello @cjramsey22
In the query editor you can unpivot the other columns so you have [Site] [Attribut] [Value] then you can do a count of the lines where the value = "Verified"
In the query editor select the site column
Go to Transform
Unpivot Columns > Unpivot Other Columns
Verified Count =
CALCULATE(
COUNTROWS( 'Table' ),
KEEPFILTERS('Table'[Value] = "Verified")
)
Hello @cjramsey22
In the query editor you can unpivot the other columns so you have [Site] [Attribut] [Value] then you can do a count of the lines where the value = "Verified"
In the query editor select the site column
Go to Transform
Unpivot Columns > Unpivot Other Columns
Verified Count =
CALCULATE(
COUNTROWS( 'Table' ),
KEEPFILTERS('Table'[Value] = "Verified")
)
Check out the May 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 |
|---|---|
| 24 | |
| 24 | |
| 21 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 56 | |
| 52 | |
| 49 | |
| 26 | |
| 25 |