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
tjlundquist1
Helper I
Helper I

Calculated column formula to identify and label non specific values in a column based on order

I am looking for some assistance. I have a list of body shops and appraisers. I want to create a calculated column that identifies and labels them accordingly. Essentially if they are in the order of "Word, Word" I want it to label as an <Appraiser> - all else, <Not an appraiser>.

 

Any Ideas? 

 

Body Shop East, 1
Body Shop East, 2
Chris, Kyle
Body Shop East, 3
Body Shop East, 4
Bob, Jim
Body Shop East, 6
1 ACCEPTED SOLUTION
ChrisMendoza
Resident Rockstar
Resident Rockstar

@tjlundquist1 -

Maybe something like:

Column =
VAR _right =
    RIGHT (
        Table1[Column1],
        1
    )
RETURN
    IF (
        ISERROR (
            ISNUMBER (
                VALUE ( _right )
            )
        ),
        "Appraiser",
        "Not an Appraiser"
    )





Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

Proud to be a Super User!



View solution in original post

3 REPLIES 3
ChrisMendoza
Resident Rockstar
Resident Rockstar

@tjlundquist1 -

Maybe something like:

Column =
VAR _right =
    RIGHT (
        Table1[Column1],
        1
    )
RETURN
    IF (
        ISERROR (
            ISNUMBER (
                VALUE ( _right )
            )
        ),
        "Appraiser",
        "Not an Appraiser"
    )





Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

Proud to be a Super User!



Works great. Thank you!

@ChR 

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