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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
mafaber
Helper II
Helper II

Search within specific month

Hi,

 

I have a table with 4 columns, 'kpi', 'month', 'status' and 'value'. Status is either 'final' or 'preliminary'. I'd like to create a month_status column that returns 'final' if all the rows for the specific month are 'final', or 'prelim', if there is at least 1 row that has 'prelim' in column 'status'.

I tried modifying somehow below formula, but I could not make it do the search within a specific month only.

month_status =
if(
iserror(
search("prelim",
Table[status])
)
),
"final",
"prelim"
)
1 ACCEPTED SOLUTION
mahoneypat
Microsoft Employee
Microsoft Employee

This could/should be done as a measure probably, but here is a column expression that should work.  Not sure if you are checking all KPIs within the month or within a given KPI for that month, but both variations shown.

 

month_status =
VAR vPrelimRows =
    CALCULATE (
        COUNTROWS ( table ),
        ALLEXCEPT (
            table,
            table[Month]
        ),
        table[Status] = "Preliminary"
    )
RETURN
    IF (
        ISBLANK ( vPrelimRows ),
        "Final",
        "Preliminary"
    )

 

replace Table with your actual table name.  If you are looking within a KPI and month use

ALLEXCEPT(Table, Table[Month], Table[KPI])

 

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


View solution in original post

2 REPLIES 2
mahoneypat
Microsoft Employee
Microsoft Employee

This could/should be done as a measure probably, but here is a column expression that should work.  Not sure if you are checking all KPIs within the month or within a given KPI for that month, but both variations shown.

 

month_status =
VAR vPrelimRows =
    CALCULATE (
        COUNTROWS ( table ),
        ALLEXCEPT (
            table,
            table[Month]
        ),
        table[Status] = "Preliminary"
    )
RETURN
    IF (
        ISBLANK ( vPrelimRows ),
        "Final",
        "Preliminary"
    )

 

replace Table with your actual table name.  If you are looking within a KPI and month use

ALLEXCEPT(Table, Table[Month], Table[KPI])

 

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


It works, thank you!

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors