cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
jtstacruz
Frequent Visitor

DAX: VAR FUNCTION (with if and filter functions) ERROR

Hello! I am just an absolute beginner in BI and I am having a hard time formulating a measure in DAX that could filter specific values in columns. However, I don't know if my execution or use of functions are correct. The thing that I would like to happen is to first count occurrences of which "RCA" term appeared in the title column, if it did then it should categorize it into FBI if not then CIA. Second, I want to combine it all together and filter those only that are "CIA" from the title, then from the client column "NSE" then from the status column "In-Progress" I just want to count the number of rows from the three conditions and display it in a card. Is there any suggestion of how to do this? Or anyone to correct the measure I've done? I got an error in the first line of var which points to Final['Title']. Here is my measure: NSE IP NEW = VAR FindAssignee = FILTER(VALUES(Final[Title]), COUNTROWS(FILTER(ALL(Final[Title]) VAR Condition=IF((SEARCH("RCA", [Title], 1, 0) > 0), "CIA", "FBI")) VAR FilteredNSE = FILTER(Final, Final[Assignee]="CIA", Final[Client]="NSE" && Final[Status]="In-Progress") RETURN CALCULATE(COUNTROWS('Final'), FindAssignee, Condition, FilteredNSE) Anyone's help will be really appreciated. Thank you!
1 ACCEPTED SOLUTION
v-chuncz-msft
Community Support
Community Support

@jtstacruz,

 

You may simply try the measure below.

Measure =
COUNTROWS (
    FILTER (
        Final,
        SEARCH ( "RCA", Final[Title], 1, 0 ) = 0
            && Final[Client] = "NSE"
            && Final[Status] = "In-Progress"
    )
)
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-chuncz-msft
Community Support
Community Support

@jtstacruz,

 

You may simply try the measure below.

Measure =
COUNTROWS (
    FILTER (
        Final,
        SEARCH ( "RCA", Final[Title], 1, 0 ) = 0
            && Final[Client] = "NSE"
            && Final[Status] = "In-Progress"
    )
)
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors