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
shorif2000
New Member

How to simplify DAX measure

Hello, I am new to powerbi and would like to know how I can simply the following piece of code in my measure. This is being used in many different places with slight different variable string such as "incident"

 

 

 

var Type = "Incident"

var OpenIncidents = countrows(filter(all(Master), Master[Ticket_Type] = Type ))

return If(ISBLANK(OpenIncidents),0,OpenIncidents)

 

 

 

The filter line is the same in all measure except for the value "Incident"

 

4 REPLIES 4
FreemanZ
Super User
Super User

hi @shorif2000 

when you say "This is being used in many different places with slight different variable string such as "incident"", how are the measures being used? Individually or collectively?

I use it in report page as a cell value. i have duplicated reports where the

 

Type 

 

value changes. I was wondering how i can make this dynamic Like:

 

 

filterRows(type=incident){

return (int) run query(type)
}



measure 1 = filterRows(inc)

measure 2 = filterRows(chg)

measure 3 = filterRows(req)

 

can you make a screenshot indicating the rows and/or columns of the mentioned cell?

Screenshot 2023-03-09 091108.png

all the cells run similair query

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