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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
sagivh
Microsoft Employee
Microsoft Employee

DAX query with COUNTAX that doesnt seem to work

Hi, I am scratching my head for some time as my query just doesnt work and i dont understand why. 
I have this table of companies, that each has many settings (so they appear multiple times) and each setting has a true/false state. 
i want to count just the number of companies that has this 'Viewer' setting enabled. thats it. 
 
This query seems right to me, but doesnt count things properly, and when I change the expression at the end (Enabled="True") to anything else it always just keeps the same value, like it doesnt matter...
 
TotalEnabled = COUNTAX(FILTER('DBView - EnabledInfo',[settingsName]="Viewer"),[Enabled]="True")
 
what am I doing wrong? 
2 REPLIES 2
avanderschilden
Resolver I
Resolver I

Hi sagivh,

 

Please try the following measure:

 

Spoiler
Companies with Viewer Enabled =
CALCULATE (
    COUNTROWS ( 'DBView - EnabledInfo' ),
    'DBView - EnabledInfo'[SettingsName] = "Viewer",
    'DBView - EnabledInfo'[Enabled] = TRUE ()
)
​

Capture.PNG

Anonymous
Not applicable

please share sample data and expected output.

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

Check out the September 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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