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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
sagivh
Employee
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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors