The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi-
I am creating a matrix chart where I want to see the count of one column (subscription names) but only where the type is a specific value.
I typed but it does not work. I dont get an error but no counts are returned. I verified in the table the value in the type column is correct.
Solved! Go to Solution.
HI @Lcouch
Can you please try the following:
CALCULATE(
COUNTA('VIEW_DataAPIDetails'[SubscriptionName]),
FILTER('VIEW_DataAPIDetails','VIEW_DataAPIDetails'[Type]= "microsoft.classiccompute/domainnames")
)
if tzhis does not work can you please show a picture of the data model cinl. columns and relations as well as how the matrix visual looks like?
Best regards
Michael
-----------------------------------------------------
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Appreciate your thumbs up!
@ me in replies or I'll lose your thread.
-----------------------------------------------------
Thank you so much. Sorry for the delay. I had multiple issues, one was data not in the table in non production but I used the DAX function for other reports/ tables w/ the same filter need and it worked perfect. I appreciate your quick turnaround
HI @Lcouch
Can you please try the following:
CALCULATE(
COUNTA('VIEW_DataAPIDetails'[SubscriptionName]),
FILTER('VIEW_DataAPIDetails','VIEW_DataAPIDetails'[Type]= "microsoft.classiccompute/domainnames")
)
if tzhis does not work can you please show a picture of the data model cinl. columns and relations as well as how the matrix visual looks like?
Best regards
Michael
-----------------------------------------------------
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Appreciate your thumbs up!
@ me in replies or I'll lose your thread.
-----------------------------------------------------